PHP code example of kinglozzer / silverstripegmapsobject
1. Go to this page and download the library: Download kinglozzer/silverstripegmapsobject library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kinglozzer / silverstripegmapsobject example snippets
class PageController extends ContentController
{
public function init()
{
parent::init();
// Fetch the Google Maps API key from the site settings
$key = SiteConfig::current_site_config()->GMapsAPIKey;
Requirements::javascript('https://maps.googleapis.com/maps/api/js?key='.$key.'&sensor=false');
Requirements::customScript(<<<JS
var gMap = {
'lat': $this->Latitude,
'lon': $this->Longitude,
'heading': $this->Heading,
'pitch': $this->Pitch
};
JS
);
}
}