在ArcGIS Viewer for Flex开发中,经常需要用到google map作为底图,我们不能通过ArcGIS Viewer for Flex - Application Builder轻易的引入google map 作为底图,需要通过程序重写TiledMapServiceLayer来扩展从而加载google map. 这里有写好的GoogleMapLayer.as文件: package com.esri.viewer { import com.esri.ags.SpatialRefe…
在ArcGIS Viewer for Flex开发中,经常需要用到google map作为底图,我们不能通过ArcGIS Viewer for Flex - Application Builder轻易的引入google map 作为底图,需要通过程序重写TiledMapServiceLayer来扩展从而加载google map. 这里有写好的GoogleMapLayer.as文件: package com.esri.viewer { import com.esri.ags.SpatialRefe…
上篇文章到在ArcGIS View中引入google map,这里讲ArcGIS for Flex中引入google map作底图. 同样道理,以google map作底图,需要编写继承自TiledMapServiceLayer的帮助类MapOperate. MapOperate类的代码如下: package { import com.esri.ags.SpatialReference; import com.esri.ags.geometry.Extent; import com.esri.a…
特点: 1.基于ArcGIS Viewer for Flex开发的一款跨平台的应用程序: -(IBAction) showTOC:(id)sender { if (_tocViewController == nil) { _tocViewController = [[TocViewController alloc] initWithNibName:@"TocViewController" bundle:nil]; _tocViewController.tocDelegate = sel…
一  Flex加载Google地图作底图 (1)帮助类GoogleLayer.as /* * 根据输入的地图类型加载Google地图(by chenyuming) */ package Layers { import com.esri.ags.SpatialReference; import com.esri.ags.geometry.Extent; import com.esri.ags.geometry.MapPoint; import com.esri.ags.layers.TiledMa…
原文 http://blog.csdn.net/leesmn/article/details/6820245 无可否认,google map实在是很漂亮.可惜对于使用arcgis api for silverlight的我们来说,无法使用它的确不爽.虽然,arcgis api for silverlight可以使用bing map.但是bing map中国地区的地图很差,城市道路信息几乎没有.稍微得到些许安慰的是最新版本(比方2.2版本)可以支持OpenStreetMap,效果比bing map…
本文主要总结Google map API V3使用中最简单也是最常见的一些操作以及相关概念,如果需要更加详细的信息,请直接阅读Google提供的关于map的文档. google map api v3文档链接: 英文版:https://developers.google.com/maps/documentation/javascript/reference 中文版:https://developers.google.com/maps/documentation/javascript/overlay…
本系列教程将分为两部分,第一部分是指导用户使用Mapview控件进行编程,其中包括了如何获得Google Map API,如何使用该API进行简单的开发,如何获得用户当前所在的位置.第二部分则包括如何在地图上,用第三方的组件库,实现气球式显示若干指定位置的功能. 步骤1 创建新的Android 工程 首先打开eclipse新建立一个Android 工程,其中相关参数设置如下: Project name:MallFinder Build Target: Google APIs Platform –…
在网页中打开 google map 中,可以使用 shift + - 来缩小地图,shift + + 来放大地图.…
Flexviewer使用Google地图作为底图: 在使用google地图作底图前提是你需要在Flex中实现加载google地图的代码(网上一大堆,随便找), 在只加载google地图的情况下,成功显示. 如果你的业务图层是arcgis server发布的Dynamic的地图,你不用考虑, Dynamic的地图是能够动态投影成谷歌的坐标的,但是如果是Tiled的地图 你就需要多考虑啦: google地图的wkid是102113,也就是Web墨卡托的,假如 你的地图是Tiled的,又是4326(比…