EV Charging Stations
Map of EV Charging Stations in Hawaiʻi
Map too small? Open this map in a new window. Data Provided by data.hawaii.gov.
function modal_function() {
// MAP OPTIONS BEGIN **************************************************
var mapOptions = {
center: new google.maps.LatLng(20.488773, -157.532959),
zoom: 7,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// MAP OPTIONS END **************************************************
// MAP CONTAINER **************************************************
var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
// DATA BEGIN **************************************************
var markers = []
$.getJSON('/assets/feeds/ev_charging_stations/ev_charging_stations.json', function(data) {
$.each(data, function(index, value) {
var mapArray = [value.property_business_name,value.latitude,value.logitude,'{"address":"' + value.street_address + '","city":"' + value.city + '","state":"HI","zip":"' + value.zip_code + '"}',"Charger Location",value.charger_location,"Availability",value.hours_of_operation,"",""];
markers.push(mapArray);
});
map_markers(map, markers);
});
// DATA END **************************************************
var center = new google.maps.LatLng(20.488773, -157.532959);
}
// LOAD MAP **************************************************
google.maps.event.addDomListener(window, 'load', modal_function);
modal_function();