Рисование изогнутой полилинии - PullRequest
0 голосов
/ 09 апреля 2020

Я пытаюсь нарисовать изогнутую ломаную линию в реагировать нативно. Я искал в Интернете, и самое близкое, что я видел, это те, которые были достигнуты в веб-приложениях, таких как jsfilddle .

      var map;

      var curvature = 0.5; // how curvy to make the arc

      function init() {
        var Map = google.maps.Map,
          LatLng = google.maps.LatLng,
          LatLngBounds = google.maps.LatLngBounds,
          Marker = google.maps.Marker,
          Point = google.maps.Point;

        // This is the initial location of the points
        // (you can drag the markers around after the map loads)
        var pos1 = new LatLng(23.634501, -102.552783);
        var pos2 = new LatLng(17.987557, -92.929147);

        var bounds = new LatLngBounds();
        bounds.extend(pos1);
        bounds.extend(pos2);

        map = new Map(document.getElementById('map-canvas'), {
          center: bounds.getCenter(),
          zoom: 12
        });
        map.fitBounds(bounds);

        var markerP1 = new Marker({
          position: pos1,
          map: map
        });
        var markerP2 = new Marker({
          position: pos2,
          map: map
        });

Хотелось бы узнать, удалось ли кому-нибудь добиться этого в реальных условиях и как

enter image description here

...