Bonjour à tous,

J'ai un soucis pour adapter certaine données pour mon développement google map.

Serait-il possible de modifier dans cette ligne les coordonnées Latitude Longitude pour les remplacer par les données contenue dans un champs texte mentionné au début du script?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
var latlng = new google.maps.LatLng(-34.397, 150.644)
Merci pour votre aide!


Voici mon essai :


Code php : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
<?php
$gg = '-34.397, 150.644';
echo '<input type="texte" id="champs"  value="'.$gg.' ">';
 
?>

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
  html { height: 100% }
  body { height: 100%; margin: 0px; padding: 0px }
  #map_canvas { height: 100% }
</style>
<script type="text/javascript"
    src="http://maps.google.com/maps/api/js?sensor=true">
</script>
<script type="text/javascript">
  
  
  function initialize() {
    var latlng = new google.maps.LatLng(-34.397, 150.644)
 
    var myOptions = {
      zoom: 8,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
  var marker = new google.maps.Marker({
      position: latlng,
          map: map,
      title:"Hello World!"
  });
 
  }
  
// To add the marker to the map, call setMap();
  marker.setMap(map);  
</script>
</head>
<body onload="initialize()">
  <div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>