mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 09:01:55 +03:00
26 lines
898 B
Plaintext
26 lines
898 B
Plaintext
@using GoogleMaps.Models
|
|
@{
|
|
ViewBag.Title = "My Friends Around - Home Page";
|
|
}
|
|
<div>
|
|
<h2>@ViewBag.Message</h2>
|
|
</div>
|
|
<p>
|
|
@Html.Raw(Html.DrawMap("ABQIAAAAksAhKXCpVW3aANz3gzuv4xSNVnIbJIiCSGOIr7YBdzhkRA0lqBRIiJsrP9FSdJi3ezjjAOwV4JljNg", "/Home/GetMarkers?timestamp=" + DateTime.Now.Ticks.ToString(), "1000", "500"))
|
|
@*ABQIAAAAksAhKXCpVW3aANz3gzuv4xT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRJW_HFuarMuHR-nqN1g7x09OKIPQ - for localhost*@
|
|
<script type="text/javascript">
|
|
function getTimeFromserver() {
|
|
var now = new Date();
|
|
$.ajax({
|
|
url: '/Home/GetMarkers',
|
|
success: function (html) {
|
|
processmarkers(html);
|
|
}
|
|
});
|
|
}
|
|
$(document).ready(function () {
|
|
setInterval('getTimeFromserver();', 10000);
|
|
});
|
|
</script>
|
|
</p>
|