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$(function() {
// Inicializando Google Maps Api
// Punto de latitud y longitud usado por el api
var myLatlng = new google.maps.LatLng(4.8925, -75.32361);
// Opciones del mapa
var mapOptions = {
center: myLatlng,
zoom: 9,
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById("googleMap"), mapOptions);
$.ajax({
//url: 'http:/volcano/public/getRepetidoras/',
url:'http:/volcano/public/getEstaciones/',
type: 'GET'
}).done(function(response){
var repetidoras = JSON.parse(response);
//console.log(repetidoras);
//alert(repetidoras);
var myIcon = new google.maps.MarkerImage("../public/img/Repetidora.png", null, null, null, new google.maps.Size(16,16));
$.each(repetidoras, function(index, item){
var marker = new google.maps.Marker({
position: new google.maps.LatLng(item.latitud_wgs84, item.longitud_wgs84),
//position: new google.maps.LatLng(item.latitud, item.longitud),
map: map,
title: item.nombre,
icon: myIcon,
});
var infowindow = new google.maps.InfoWindow({
content: "<div>"+ item.nombre + "</div>",
maxWidth: 600
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
});
});
});