Hi,
Reading the posts I didn't find a solution for the integration of Google Maps.
Code like:
shows the map for a micro-second and then just disappears.
Have you successfully implemented Google Maps?
Thanks in advance,
Reading the posts I didn't find a solution for the integration of Google Maps.
Code like:
Code:
public class Gis extends HTMLPane
{
final MapWidget mapWidget;
public Gis()
{
setWidth100();
setHeight100();
mapWidget = new MapWidget();
mapWidget.setDoubleClickZoom( true );
mapWidget.setScrollWheelZoomEnabled( true );
mapWidget.setZoomLevel( 3 );
Canvas maps = new Canvas();
maps.setWidth100();
maps.setHeight100();
maps.addChild( mapWidget );
addChild( maps );
}
}
Have you successfully implemented Google Maps?
Thanks in advance,
Comment