ADD возможность добавлять себя в маршрут
This commit is contained in:
parent
d3c11faed2
commit
4b4514d559
|
|
@ -6,7 +6,6 @@ ymaps.ready(init);
|
|||
var myMap;
|
||||
var categories;
|
||||
var points = Array();
|
||||
var im;
|
||||
var search;
|
||||
var route = false;
|
||||
|
||||
|
|
@ -56,11 +55,15 @@ function init() {
|
|||
}
|
||||
});
|
||||
|
||||
im = new ymaps.Placemark(
|
||||
points.im = new ymaps.Placemark(
|
||||
[ymaps.geolocation.latitude, ymaps.geolocation.longitude],
|
||||
{
|
||||
balloonContentHeader: 'Вы здесь',
|
||||
balloonContent: ''
|
||||
hintContent: 'Ваше местоположение',
|
||||
balloonContent:
|
||||
'<button type="button" class="btn btn-default btn-xs" onclick="addToRoute(\'im\')">' +
|
||||
'<span class="glyphicon glyphicon-plus"></span> Добавить в маршрут' +
|
||||
'</button>'
|
||||
},
|
||||
{
|
||||
iconImageHref: '/ico/man.png',
|
||||
|
|
@ -68,7 +71,7 @@ function init() {
|
|||
iconImageOffset: [-16, -33],
|
||||
}
|
||||
);
|
||||
myMap.geoObjects.add(im);
|
||||
myMap.geoObjects.add(points.im);
|
||||
|
||||
$("#wayPoints").sortable();
|
||||
$("#wayPoints").disableSelection();
|
||||
|
|
@ -180,11 +183,11 @@ function searchAdderess()
|
|||
function showMeOnTheMap()
|
||||
{
|
||||
navigator.geolocation.getCurrentPosition(function(pos) {
|
||||
im.geometry.setCoordinates([pos.coords.latitude, pos.coords.longitude]);
|
||||
myMap.setCenter(im.geometry.getCoordinates());
|
||||
points.im.geometry.setCoordinates([pos.coords.latitude, pos.coords.longitude]);
|
||||
myMap.setCenter(points.im.geometry.getCoordinates());
|
||||
});
|
||||
|
||||
myMap.setCenter(im.geometry.getCoordinates());
|
||||
myMap.setCenter(points.im.geometry.getCoordinates());
|
||||
}
|
||||
|
||||
function activateAddPoint()
|
||||
|
|
|
|||
Loading…
Reference in New Issue