amigos ya le pongo marcadores al mapa pero me falta que al darle click aparezca la InfoWindow
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: 12,
mapTypeId: google.maps.MapTypeId.TERRAIN
};
var map = new google.maps.Map(document.getElementById("googleMap"), mapOptions);
$.ajax({
url: 'http:/volcano/public/getRepetidoras/',
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, item.longitud),
map: map,
title: item.nombre,
icon: myIcon,
});
});
});
});
alguien me puede orientar