Как получить кратчайший путь между двумя заданными координатами в MapView? [закрыто]

Сначала поместите ваши карты в контейнер:

<div id="map">
    <div class="google-maps"></div>
</div>

CSS:

#map {
    position: relative;
    height: 500px;
    overflow: hidden; //important
}
#map .google-maps {
    position: absolute;
    width: 100%;
    height: 110%;  //that will do the trick
    left: 0;
    top: 0;
}
-11
задан swati 18 July 2017 в 10:27
поделиться