PHP code example of sylvainjule / mapnotator
1. Go to this page and download the library: Download sylvainjule/mapnotator 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/ */
sylvainjule / mapnotator example snippets
return array(
'sylvainjule.mapnotator.tiles' => 'positron',
);
return array(
'sylvainjule.mapnotator.mapbox.id' => 'mapbox/outdoors-v11',
'sylvainjule.mapnotator.mapbox.token' => 'pk.vdf561vf8...',
);
return array(
'sylvainjule.mapnotator.tiles' => 'mapbox',
);
return array(
'sylvainjule.mapnotator.mapbox.token' => 'pk.vdf561vf8...',
);
return array(
'sylvainjule.mapnotator.geocoding' => 'mapbox',
);
return array(
'sylvainjule.mapnotator.token' => '',
'sylvainjule.mapnotator.id' => 'mapbox.outdoors',
'sylvainjule.mapnotator.tiles' => 'positron',
'sylvainjule.mapnotator.zoom.min' => 2,
'sylvainjule.mapnotator.zoom.default' => 12,
'sylvainjule.mapnotator.zoom.max' => 18,
'sylvainjule.mapnotator.center.lat' => 48.864716,
'sylvainjule.mapnotator.center.lon' => 2.349014,
'sylvainjule.mapnotator.shapes' => ['marker', 'polyline', 'rectangle', 'polygon', 'circle', 'circleMarker'],
'sylvainjule.mapnotator.tools' => ['edit', 'drag', 'cut', 'remove', 'rotate'],
'sylvainjule.mapnotator.size' => 'full',
'sylvainjule.mapnotator.geocoding' => 'nominatim',
'sylvainjule.mapnotator.autocomplete' => true,
'sylvainjule.mapnotator.color' => '#2281f7',
);
$location = $page->mymap()->yaml();
$json = Json::encode($location);