I am looking for numbered markers. and manually creating marker numbered from 1-1000 is quite laborious.
Is there are better way to upload an image and the program g
You can use Dynamic Icons of Google Chart API
, and get customized markers for your map.
You can use for example this pattern for marker's icon:
https://chart.googleapis.com/chart?chst=d_map_pin_letter&chld=*number*|FF776B|000000
and the usage could be this:
var number = 15; //
var marker = new google.maps.Marker({
position: latlngOfMarker,
map: map,
icon: 'https://chart.googleapis.com/chart?chst=d_map_pin_letter&chld='+number+'|FF776B|000000'
});
The icon will be like this:
However, note that the service is deprecated ,and it will not be suitable for long term projects.