本文整理匯總了Java中org.gwtopenmaps.openlayers.client.control.Attribution類的典型用法代碼示例。如果您正苦於以下問題:Java Attribution類的具體用法?Java Attribution怎麽用?Java Attribution使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Attribution類屬於org.gwtopenmaps.openlayers.client.control包,在下文中一共展示了Attribution類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: initialize
import org.gwtopenmaps.openlayers.client.control.Attribution; //導入依賴的package包/類
public void initialize() {
geoMap.configure(GeoMap.INTERNAL_EPSG, MAX_NUM_ZOOM_LEVEL,
DEFAUL_MAP_UNITS);
final ScaleLineOptions slOptions = new ScaleLineOptions();
slOptions.setTopOutUnits(DEFAUL_MAP_UNITS);
slOptions.setBottomOutUnits("");
final ScaleLine scaleLine = new ScaleLine(slOptions);
scaleLine.getJSObject().setProperty("geodesic", true);
geoMap.addControl(scaleLine);
final Scale scale = new Scale();
scale.getJSObject().setProperty("geodesic", true);
geoMap.addControl(scale);
geoMap.addControl(new Attribution());
geoMap.addControl(new Navigation());
geoMap.getMap()
.getEvents()
.register("mousemove", geoMap.getMap(),
getMouseMoverEventHandler());
geoMap.getMap()
.getEvents()
.register("click", geoMap.getMap(), getMouseClickEventHandler());
geoMap.getMap()
.getEvents()
.register("touchstart", geoMap.getMap(),
getMouseClickEventHandler());
geoMap.getMap().addMapZoomListener(geoMapZoomListener);
}