wrote:
Hi Vinicius,
"I have stores that have locations and with their location i created markers on my map, i just want when i click on the marker to show the information about the store that is on the position of the marker clicked..."
Take a look on this post, Carlos posted there an example if the explanation isn't enough. I think you'll be able to get the marker click working.
About the content over the google maps map, you can achieve it 2 ways:
- CSS - You put the containers with the desired classes that implement the position:absolute/fixed desired.
- You have a block on the Silk UI mobile that is called floating content that does the trick, you just need to choose where you want the information and for transparent background, just add the following code:
/* Floating Content */
.floating-content {
background-color: transparent;
}
Hope it helps :)
Works now! but i added a extra "z-index: 100;" to the class; (100 because the left app-menu z-index is 170).