Posts by MigMar • 101 points
3 posts
-
3
votes2
answers841
viewsA: Google Maps API and Google Indoor Maps
Indoor Maps is not yet available for the Google Maps v3 API, but there is a solution that can meet your needs. The Groundoverlay class, Ground Overlays in our Portuguese, allows you to place an…
-
2
votes2
answers543
viewsA: Zoom button and Street View do not appear in Modal Boostrap
I’ve had a similar problem with the bootstrap and google maps api and solved with the following css rule: #map-canvas img { max-width: none !important; } note that the rule is being applied to the…
-
2
votes1
answer516
viewsA: Markers Google Maps V3 Javascript
The initialize function called in the last line of your code does not exist. It must replace the function name carregarMapa() for initialize(). The function criaPonto() is it never called? You need…