Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/04/2014, 16:19
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 6 meses
Puntos: 6
Localizar diferentes lugares en google maps

hola amigos estoy trabajando con google maps, y tengo que ubicar varios lugares los cuales tienen diferentes iconos desde base de datos obtengo la ubicacion de los puntos y la ubicacion de las imagenes pero no logro que se vean en el mapa


este es mi codigo
Código Javascript:
Ver original
  1. $(function() {
  2.         // Inicializando Google Maps Api
  3.    
  4.         // Punto de latitud y longitud usado por el api
  5.         var myLatlng = new google.maps.LatLng(4.8925, -75.32361);
  6.         // Opciones del mapa
  7.         var mapOptions = {
  8.             center: myLatlng,
  9.             zoom: 9,
  10.             mapTypeId: google.maps.MapTypeId.TERRAIN
  11.         };
  12.         var map = new google.maps.Map(document.getElementById("googleMap"), mapOptions);
  13.  
  14.         $.ajax({
  15.             //url: 'http:/volcano/public/getRepetidoras/',
  16.             url:'http:/volcano/public/getEstaciones/',
  17.             type: 'GET'      
  18.         }).done(function(response){
  19.             var repetidoras = JSON.parse(response);
  20.             //console.log(repetidoras);
  21.             //alert(repetidoras);
  22.  
  23.             var myIcon = new google.maps.MarkerImage("../public/img/Repetidora.png", null, null, null, new google.maps.Size(16,16));
  24.  
  25.  
  26.             $.each(repetidoras, function(index, item){                
  27.                 var marker = new google.maps.Marker({
  28.                     position: new google.maps.LatLng(item.latitud_wgs84, item.longitud_wgs84),
  29.                     //position: new google.maps.LatLng(item.latitud, item.longitud),
  30.                     map: map,
  31.                     title: item.nombre,
  32.                     icon: myIcon,
  33.  
  34.                 });
  35.  
  36.                 var infowindow = new google.maps.InfoWindow({
  37.                 content: "<div>"+ item.nombre + "</div>",
  38.                 maxWidth: 600
  39.  
  40.                
  41.                 });
  42.  
  43.  
  44.               google.maps.event.addListener(marker, 'click', function() {
  45.   infowindow.open(map,marker);
  46.   });
  47.  
  48.  
  49.             });            
  50.        });
  51.  
  52. });