I created an html page that display a map using javaScript (google maps api) the map contains markers I want to get data (attitude and longitude) from "mysql" database to use it for markers (to make dynamic markers) Is there a way that I can get data from database to use it with javascript? ps : I couldn't find solutions online
this is for html5,javascript (using jquery),google maps
//creating the marker on first position
marker = new google.maps.Marker({
position : MarkerCoords,
map : map,
title : 'your position'
});