2amigos / egmap

Objet-oriented PHP abstraction to the Google Maps API to ease the process of adding a Google Map on your Yii projects.
14 stars 12 forks source link

Zoom Area Not Showing #10

Closed queejie closed 10 years ago

queejie commented 10 years ago

Thanks very much for your effort on this! I'm wondering if I'm doing something wrong, because the zoom area seems to be corrupted somehow, not showing completely. I have it in a "plain" view with almost no styles. It happens whether I show any markers or just simply show the map and do nothing else:

$gMap = new EGMap(); $gMap->zoom = 6; $gMap->setCenter(42.9, -76); $gMap->renderMap();

nysut_pdd_dqj_gmap

tonydspaniard commented 10 years ago

@queejie That is surely due to some CSS pitfall (don't worry shit happens :)).

I recommend you to do the following:

You will surely find the reason (thats what I did to find mine)

queejie commented 10 years ago

Yeah, it was a Bootstrap style, layered pretty deep, on the img tag for the zoom area. Thanks!