google api

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Jerry php

Jerry php

25/06/2013 09:47:29
Quote Anchor link
Beste mensen,

ik ben bezig met een google maps optie, enkel haalt hij dit bestand niet op: maps.gstatic.com

hoe kan ik dit oplossen?
 
PHP hulp

PHP hulp

20/04/2024 17:12:15
 
Nick Dijkstra

Nick Dijkstra

25/06/2013 09:49:20
 
Jerry php

Jerry php

25/06/2013 09:52:28
Quote Anchor link
Ja maar ik kan mijn antwoord niet echt vinden..
 
Nick Dijkstra

Nick Dijkstra

25/06/2013 09:55:16
Quote Anchor link
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!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 {
        margin: 0;
        padding: 0;
        height: 100%;
      }
    </style>
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
    <script>
var map;
function initialize() {
  var mapOptions = {
    zoom: 8,
    center: new google.maps.LatLng(-34.397, 150.644),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  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>


Bron: https://developers.google.com/maps/documentation/javascript/examples/map-simple?hl=nl
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.