在我的申请表中,我有一个商店搜索表单。
当用户在商店附近搜索时,
它会生成一个带有地图链接的位置列表。
当用户点击地图链接时,它应该为该特定位置构建代码。
任何人都可以建议我如何完成这项工作。
我正在努力做这样的安慰
public ActionResult GoogleMap(string address)
{
StringBuilder map = new StringBuilder();
map.Append("<h1>");
map.Append(address);
map.Append("</h1>");
ViewBag.Address = map;
return PartialView("_GoogleMap");
}
更多详情:
<小时/> 我还没有任何有效的代码可以从Google API检索地图。我想要做的是我可以将位置的字符串地址传递给我的操作方法,我想构建可以显示地图块的标记。
工作代码链接
<小时/> 这里有一些工作code我希望这会提供我想要实现的更多细节
如果我可以使用所有可以完成所有操作的标记构建我的字符串生成器。
感谢
答案 0 :(得分:0)
我自己完成了这件事
我的脚本(GoogleMap.js)就像这样
var ad1 = $("#ad1").val();
var ad2 = $("#ad2").val();
var address1 = ad1;
var address2 = ad2;
//var lat = $("#lat").val();
//var lng = $("#lng").val();
var map;
var map2;
var gdir;
var gdir2;
var geocoder = null;
var geocoder2 = null;
var addressMarker;
var addressMarker2;
function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
gdir = new GDirections(map, document.getElementById("directions"));
GEvent.addListener(gdir, "load", onGDirectionsLoad);
GEvent.addListener(gdir, "error", handleErrors);
setDirections(address2, address1, "en_US");
// setDirections("San Francisco", "Mountain View", "en_US");
}
}
function setDirections(fromAddress, toAddress, locale) {
gdir.load("from: " + fromAddress + " to: " + toAddress,
{ "locale": locale });
}
我的观点是这样的
<小时/> 将此密码包含在您的API密钥中
<script src="http://maps.google.com/maps?file=api&v=2&sensor=true_or_false&key=ABQIAAAAOdhD1B3BVBtgDtcx-d52URS1RRrijDm1gy4LClE7B_C-myLe1RRtDZ0LHqXIq8q0z4mVVysLOLUxtA"></script>
@Html.Raw("<h1>"+PharmacyLocation+"</h1>")
@Html.Hidden("Adrs1", PharmacyLocation, new { id = "ad1" })
@Html.Hidden("Adrs2", DistanceFrom, new { id = "ad2" })
@Html.Hidden("lat", lt, new { id = "lat" })
@Html.Hidden("lng", lg, new { id = "lng" })
<style type="text/css">
body {
font-family: Verdana, Arial, sans serif;
font-size: 11px;
margin: 2px;
}
table.directions th {
background-color:#EEEEEE;
}
img {
color: #000000;
}
.directions
{
}
.directions td
{
width:300px;
}
#directions
{
width: 300px; height: auto;
float: left;
}
#map_canvas{
width: 300px; height: 400px;
float:right;
margin-top: 16px;
}
</style>
<script src="../../Scripts/GoogleMap.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
initialize()
});
</script>
<table class="directions">
<tr><th>Directions</th><th>Map</th></tr>
<tr>
<td valign="top"><div id="directions"></div></td>
<td valign="top"><div id="map_canvas"></div></td>
</tr>
</table>
<script>
$("#map_canvas").attr("style", "position: absolute; background-color: rgb(229, 227, 223); padding-top:25px;");
</script>
希望这对任何有需要的人都有用。