Visual Studio 2010 - 无法使用 C# 在 Google 地图标记上添加文本
本文关键字:图标 地图 Google 文本 添加 2010 Studio Visual | 更新日期: 2023-09-27 17:56:33
我正在使用C# visual studio 2010在谷歌地图上定位区域。这是我的代码:-
public partial class frmMap : Form
{
public frmMap(string lat, string lon)
{
InitializeComponent();
if (lat == string.Empty || lon == string.Empty)
{
this.Dispose();
}
try
{
StringBuilder queryAddress = new StringBuilder();
queryAddress.Append("http://maps.google.com/maps?q=");
if (lat != string.Empty)
{
queryAddress.Append(lat + "%2C");
}
if (lon != string.Empty)
{
queryAddress.Append(lon);
}
webBrowser1.Navigate(queryAddress.ToString());
}
catch (Exception ex)
{
MessageBox.Show(ex.Message.ToString(), "Error");
}
}
}
工作正常,现在我需要在谷歌地图的标记上添加一些文本。 为此,我在谷歌上搜索了每个地方,但找不到在谷歌地图标记上添加文本的方法。那么,有没有办法使用 C# 在谷歌地图上编辑标记文本?
看看这个: https://stackoverflow.com/a/1771915/4972575(您可能需要谷歌API密钥来添加自定义标记。
您可以使用 chart.apis.google.com 创建自定义标记:http://chart.apis.google.com/chart?chst=d_map_spin&chld=2|45|FFFFFF|14|_|your|text