Google Maps - Snippets: Unterschied zwischen den Versionen
Aus Wikizone
| Zeile 1: | Zeile 1: | ||
== Einfache Karte == | == Einfache Karte == | ||
| − | < | + | <syntaxhighlight lang="javascript"> |
<!DOCTYPE html> | <!DOCTYPE html> | ||
<html> | <html> | ||
| Zeile 34: | Zeile 34: | ||
</body> | </body> | ||
</html> | </html> | ||
| − | </ | + | </syntaxhighlight> |
== Zusätzliche Google Maps Libraries einbinden == | == Zusätzliche Google Maps Libraries einbinden == | ||
Version vom 18. Mai 2015, 15:19 Uhr
Einfache Karte
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644)
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>
Zusätzliche Google Maps Libraries einbinden
Beispiel:
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=drawing,places"></script>