如何通过动态 Url 生成带有图钉的 bing 地图
How to generate bing map with pushpin via dynamic Url
我无法通过 bing 集合在动态生成的 url...
上显示图钉
我正在从 c# 中生成以下 url:
https://www.bing.com/maps/embed?h=300&w=300&cp=47.64005~-122.1298&style=h&lvl=15&sp=adr.1%20Microsoft%20Way%2C%20Redmond%2C%20WA%2098052
C#代码:
const string mapTemplate = "https://www.bing.com/maps/embed?h=300&w=300&cp={0}~{1}&style=h&lvl=15&sp=adr.{2}";
这可能吗?我错过了什么?
Bing 地图用户站点公开的嵌入式地图不允许您向地图添加图钉。使用 Bing 地图开发人员 API 的,它们适用于自定义应用程序。
我无法通过 bing 集合在动态生成的 url...
上显示图钉我正在从 c# 中生成以下 url:
https://www.bing.com/maps/embed?h=300&w=300&cp=47.64005~-122.1298&style=h&lvl=15&sp=adr.1%20Microsoft%20Way%2C%20Redmond%2C%20WA%2098052
C#代码:
const string mapTemplate = "https://www.bing.com/maps/embed?h=300&w=300&cp={0}~{1}&style=h&lvl=15&sp=adr.{2}";
这可能吗?我错过了什么?
Bing 地图用户站点公开的嵌入式地图不允许您向地图添加图钉。使用 Bing 地图开发人员 API 的,它们适用于自定义应用程序。