11

我想将 OSM 集成到 GWT 中。我找到了这个名为 gwt-openlayers 的库,但我不明白如何使它与 OSM 地图一起使用。

谁能给我一个简短的例子?

4

3 回答 3

11

GWT-OpenLayersHelloWorld与 OpenStreetMap

以下示例对我来说很好,OpenLayers-2.8/OpenLayers.js如上所述OpenStreetMap.js

公共无效 onModuleLoad() {

MapOptions defaultMapOptions = new MapOptions();
MapWidget mapWidget = new MapWidget("800px", "600px", defaultMapOptions);

OSM osm_1 = OSM.Osmarender("Osmarender");   // Label for menu 'LayerSwitcher'
    osm_1.setIsBaseLayer(true);

OSM osm_2 = OSM.Mapnik("Mapnik");   // Label for menu 'LayerSwitcher'
    osm_2.setIsBaseLayer(true);

OSM osm_3 = OSM.CycleMap("CycleMap"); 
    osm_3.setIsBaseLayer(true);

OSM osm_4 = OSM.Maplint("Maplint"); 
    osm_4.setIsBaseLayer(true);

Map map = mapWidget.getMap();
    map.addLayer(osm_1);
    map.addLayer(osm_2);
    map.addLayer(osm_3);
    map.addLayer(osm_4);
    map.addControl(new LayerSwitcher());
    map.addControl(new MousePosition());

 // map.setCenter(new LonLat(6.95, 50.94), 12);            // Warning:  In the case of OSM-Layers the method 'setCenter()' uses Gauss-Krueger coordinates,
                                                           //           thus we have to transform normal latitude/longitude values into this projection first:
    LonLat lonLat = new LonLat(6.95, 50.94);               //           (6.95, 50.94)  -->  (773670.4, 6610687.2)
           lonLat.transform("EPSG:4326", "EPSG:900913");   //           
    map.setCenter(lonLat, 12);                             //           see  http://docs.openlayers.org/library/spherical_mercator.html

RootPanel.get().add(mapWidget); }
于 2010-07-21T10:31:14.560 回答
11

通过将以下内容添加到模块文件中,确保从 gwt-openlayers 继承:

<inherits name='org.gwtopenmaps.openlayers.OpenLayers'/>

还要确保通过在“Application.html”页面中添加以下行将 OpenLayers javascript 库和 OpenStreetMap OpenLayers 引入您的应用程序:

<script src="http://www.openlayers.org/api/OpenLayers.js"></script>

<script src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"></script>

然后创建一个使用开放街道地图的图层应该是一件简单的事情:

OSM openStreetMap = OSM.Osmarender("Base Map"); openStreetMap.setIsBaseLayer(true);

MapWidget mapWidget = new MapWidget("350px", "350px"); mapWidget.getMap().addLayer(openStreetMap);

于 2010-05-08T21:15:16.320 回答
1

您可以在此处找到当前版本的 gwt-openlayers:http: //sourceforge.net/projects/gwt-openlayers/

于 2010-10-30T00:36:09.130 回答