Wie man programmatisch eine Karte mit Leaflet erstellt
Manchmal möchte mal einfach und schnell eine Karte zu einem Inhalt oder Block hinzufügen, ohne großartig etwas konfigurieren zu müssen. Man möchte einfach nur die Karte anzeigen und fertig.
Glücklicherweise ist das ziemlich einfach mit Leaflet zu bewerkstelligen.
Nehmen wir mal an, man hat die Werte für den Ort und für das Land und möchte dies "Adresse" auf der Karte anzeigen.
Dazu muss man zuerst Leaflet und Geocoder installieren und dann diese Funktion zum Erzeugen der Karte verwenden:
- <?php
- /**
- * Generate a simple map with a location pointer.
- *
- * @param string $location
- * Location to use (for example the address).
- * @param string $country
- * Name of the country to use.
- *
- * @return string
- * The rendered map.
- */
- function mysimplemap_map_create($location, $country) {
- $map = '';
- // Join the address parts to something geocoder / google maps understands.
- // Try to create a geographic point out of the given location values.
- if ($geo_point = geocoder('google', $address)) {
- // Create a JSON equivalent to the point.
- $geo_json = $geo_point->out('json');
- // Get map implementation provided by http://drupal.org/project/leaflet_googlemaps.
- $map = leaflet_map_get_info('google-maps-roadmap');
- // Set initial zoom level.
- $map['settings']['zoom'] = 16;
- // Decode the JSON string.
- // Create settings for the map.
- 'type' => 'point',
- 'lon' => $geo_data->coordinates[0],
- 'lat' => $geo_data->coordinates[1],
- ),
- );
- // Render the map with a fixed height of 250 pixels.
- $map = leaflet_render_map($map, $features, '250px');
- }
- return $map;
- }
- ?>
Einfach, oder?