appreciate any help, Im using http://hpneo.github.io/gmaps/ and I was wondering if its possible to use the address instead of latitude longitude
map = new GMaps({
el: '#map',
zoom: 16,
disableDefaultUI: true,
lat: {{ $loc->latitude }},
lng: {{ $loc->longitude }}
});
map.addMarker({
lat: {{ $loc->latitude }},
lng: {{ $loc->longitude }},
title: '{{ $loc->name }}',
infoWindow: {
content: '<p>{{ $loc->name }}</p>'
}
});