Beispiellösung zur Kartendarstellung mit Leaflet, PHP, MySQL, JavaScript und Leaflet
<!DOCTYPE html> <html> <head> <title>Museen in Köln und Umgebung</title> <meta charset=“utf-8″> <link rel=“stylesheet“ href=“http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.css“ /> <style> html, body { padding: 0; margin: 0; width: 100%; height: 100%; } #map { width: 100%; height: 100%; } </style> </head> <body> <div id=“map“></div> <script src=“http://cdn.leafletjs.com/leaflet/v0.7.7/leaflet.js“></script> <script> // Variable / Array zur Speicherung aller Museumsinfos var geodaten = [];…
Read More Beispiellösung zur Kartendarstellung mit Leaflet, PHP, MySQL, JavaScript und Leaflet