创建自定义 Bing 地图
我目前正在开发一个项目(水信息系统),我确实需要为我当前正在开发的软件创建一个简单的自定义地图。
地图只会有信息。关于周围的社区、供水线路和最近的净水室
我如何创建自定义的 bing 地图,其中 1.地图管理员可以创建和更新地图(通过添加新的水室/信息) 2. 用户可以轻松地只查看定制的地图。
我在使用 BING MAP SDK + Visual Studio 2010 + Silverlight 执行此操作时遇到问题。 请任何可能的解决方案、提示或建议。谢谢
I'm currently working on a project (Water Information System) and I really need to create a simple customized map for the software I'm currently working on.
The maps would only have info. about the communities around, water links and closest water purification chambers
How do i create a create a customized bing map where
1. Map Admins can create and update the map (by adding new water chambers/ info)
2. Users can easily view only the customized map.
I'm having problems doing that with the BING MAP SDK + Visual Studio 2010 + Silverlight.
Please any possible solution, hint or suggestion. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您是否仍在寻求这方面的帮助...
我做了一些类似的事情,但我没有使用 Silverlight BingMaps 控件,而是使用了 AJAX,并通过 Javascript 控制了这一切。
您希望您的项目有 2 个屏幕 - 管理员可以在其中绘制和放置其数据(水室),然后将这些屏幕及其地理坐标保存到数据库中。
第二个屏幕将是最终用户加载地图,您将创建另一个 EntityCollection 层来保存从数据库中提取的所有数据。
这是我发现的一个示例项目,它应该为您提供一个入门模板
http://ajaxmapdataconnector.codeplex.com/
Not sure if you're still looking for help on this ...
I have done something similiar but instead of using the Silverlight BingMaps control, I've used the AJAX instead, and controlled it all via Javascript.
You'd want to have 2 screens for your project - one where the Admins can plot and drop their data (water chambers) and you save those to a database with their Geo coordinates.
the 2nd screen would be the end-users loading the map, and you would create another EntityCollection layer holding all of the data pulled from the database.
Here is a sample project I found that should provide you a template to get started
http://ajaxmapdataconnector.codeplex.com/