Google Maps - description show all

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
nehir_nehir
User
Posts: 31

Google Maps - description show all

Post by nehir_nehir »

Hi,
For example, there are 5 makers on the map.
Each of them has a description.
Click on any marker to display the description.
How can I show all of them when the map is loaded?


arbei
User
Posts: 9381

Post by arbei »

There is no option in the Custom View Tag to show all description of the markers while the map is loaded.

Check the API from the google map documentation and check if there is any options/method to change it. If yes, you can subscribe the "map" event in Client Script and update the options or arguments.

For example:
$(document).on("map", function(e, args){
// code to update the arguments.
}


Post Reply