SQL Server 2008空间数据应用系列十一:Bing Maps中呈现GeoRSS订(8)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-15 19:46 点击:次
}
}
}
private LocationCollection ParserLocations(string points)
{
LocationCollection lc = new LocationCollection();
string[] ps = points.Split(' ');
for (int i = 0; i < ps.Length; i+=2)
{
lc.Add(new Location(double.Parse(ps[i]), double.Parse(ps[i + 1])));
}
return lc;
}
#endregion
}
}
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>