Google Maps - Snippets: Unterschied zwischen den Versionen

Aus Wikizone
Wechseln zu: Navigation, Suche
Zeile 1: Zeile 1:
 
== Einfache Karte ==
 
== Einfache Karte ==
<pre>
+
<code>
 
<!DOCTYPE html>
 
<!DOCTYPE html>
<head>
+
<html>
   <meta charset="utf-8">
+
   <head>
  <meta content='IE=8' http-equiv='X-UA-Compatible'>
+
    <title>Simple Map</title>
  <title></title>
+
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
  <meta name="viewport" content="width=device-width">
+
    <meta charset="utf-8">
  <style>
+
    <style>
    html, body, #map-canvas {
+
      html, body, #map-canvas {
      height: 100%;
+
        height: 100%;
      margin: 0px;
+
        margin: 0px;
      padding: 0px
+
        padding: 0px
    }
+
      }
  </style>
+
    </style>
  <script src="https://maps.googleapis.com/maps/api/js?v=3.9"></script>
+
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
  <script type="text/javascript">
+
    <script>
  var map;
+
var map;
  function initialize() {
+
function initialize() {
    var mapOptions = {
+
  var mapOptions = {
      zoom: 8,
+
    zoom: 8,
        center: new google.maps.LatLng(-34.397, 150.644)
+
    center: new google.maps.LatLng(-34.397, 150.644)
    };
+
  };
    map = new google.maps.Map(document.getElementById('map-canvas'),mapOptions);
+
  map = new google.maps.Map(document.getElementById('map-canvas'),
}
+
      mapOptions);
 +
}
  
google.maps.event.addDomListener(window, 'load', initialize);
+
google.maps.event.addDomListener(window, 'load', initialize);
  </script>
+
 
</head>
+
    </script>
<body>
+
  </head>
<div id="map-canvas"></div>
+
  <body>
</body>
+
    <div id="map-canvas"></div>
 +
  </body>
 
</html>
 
</html>
</pre>
+
</code>
  
 
== Zusätzliche Google Maps Libraries einbinden ==
 
== Zusätzliche Google Maps Libraries einbinden ==

Version vom 18. Mai 2015, 15:17 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>
 </body>

</html>

Zusätzliche Google Maps Libraries einbinden

Beispiel:

<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=drawing,places"></script>