SuperMap导航条控件设置

有地图配置如下


<ic:Map id="map" left="10" top="22" width="935" height="532" scales="{[1/2329820.0872163,1/1000000,1/500000]}">
		<is:TiledDynamicRESTLayer transparent="true" url="{mapUrl}"/>
		<is:TiledDynamicRESTLayer id="iServerWmsLayer" alpha="0.5" url="{devMap}">
			<is:bounds>
				<ic:Rectangle2D bbox="398982.27, 4422784.37,458598.98 , 4437422.63"/>
			</is:bounds>
		</is:TiledDynamicRESTLayer>
		<ic:FeaturesLayer id="featuresLayer"/>		
	</ic:Map>
需要为这个地图添加上罗盘和导航条


SuperMap导航条控件设置

应该加上


<!--罗盘控件-->
	<ic:Compass map="{map}" left="10" top="10"/>
	<!--导航条控件-->
	<ic:ZoomSlider map="{map}" x="30" y="84"/>
在导航条设置设置上花费了一定时间


应该在map中添加

scales="{[1/2329820.0872163,1/1000000,1/500000]}
比例尺大小可以到SuperMap DeskPro中查看

SuperMap导航条控件设置

你可能感兴趣的:(SuperMap导航条控件设置)