popotitagluck | Alors j'ai enlevé les quotes, je précise aussi que j'ai lancer un print_r pour voir ce qu'il se passe quand le code est lancé.
le résultat de la partie qui nous intéresse (code source):
Code :
- <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
- <script>
- // This example creates a simple polygon representing the polygone.
- function initialize() {
- var mapOptions = {
- zoom: 5,
- center: new google.maps.LatLng(24.886436490787712, -70.2685546875),
- mapTypeId: google.maps.MapTypeId.TERRAIN
- };
- var map = new google.maps.Map(document.getElementById('map-canvas'),
- mapOptions);
- // Define the LatLng coordinates for the polygon's path.
- var triangleCoords = [
- Array
- (
- [0] => 34.731
- [X] => 34.731
- )
- new google.maps.LatLng(34.731,36.72),
- new google.maps.LatLng(,),
- ];
- var polygon1 // Construct the polygon.
- polygon1= new google.maps.Polygon({
- paths: triangleCoords,
- strokeColor: '#FF0000',
- strokeOpacity: 0.8,
- strokeWeight: 2,
- fillColor: '#FF0000',
- fillOpacity: 0.35
- });
- polygon1.setMap(map);
- }
- var triangleCoords = [
- Array
- (
- [0] => 40.939
- [X] => 40.939
- )
- new google.maps.LatLng(40.939,-74.1365),
- new google.maps.LatLng(,),
- ];
- var polygon2 // Construct the polygon.
- polygon2= new google.maps.Polygon({
- paths: triangleCoords,
- strokeColor: '#FF0000',
- strokeOpacity: 0.8,
- strokeWeight: 2,
- fillColor: '#FF0000',
- fillOpacity: 0.35
- });
- polygon2.setMap(map);
|
Il y a bien qu'une seule valeur par PolyX, PolyY
est ce possible que le serveur soit mal configuré ? Car quand je lance la même requête sur phpmyadmin => j'obtiens bien un vecteur ! Message édité par popotitagluck le 19-11-2013 à 18:02:27
|