mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-10 21:46:16 +10:00
18 lines
423 B
CoffeeScript
18 lines
423 B
CoffeeScript
$ ->
|
|
$('#view_map').each ->
|
|
lat = $(this).data('lat')
|
|
lng = $(this).data('lng')
|
|
|
|
map_options = {
|
|
center: new google.maps.LatLng(lat, lng),
|
|
zoom: 8,
|
|
mapTypeId: google.maps.MapTypeId.ROADMAP
|
|
}
|
|
|
|
map = new google.maps.Map(this, map_options)
|
|
|
|
marker_options = {
|
|
position: new google.maps.LatLng(lat, lng),
|
|
map: map
|
|
}
|
|
marker = new google.maps.Marker(marker_options) |