You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I'm currently on Laravel 5.4 and need your urgent advise, 'cause all my effords to make a $map->getOverlayManager()->addPolyline($polyline); or $map->getOverlayManager()->addPolylines([$polyline1, $polyline2]); is ended with light-grey screen in place of map. Currently I was able to display only 1 polyline.
The text was updated successfully, but these errors were encountered:
$coords[] = new Coordinate(50.55, 30.523333);
$coords[] = new Coordinate(50.65, 30.523333);
$coords[] = new Coordinate(50.75, 30.523333);
$coords[] = new Coordinate(50.75, 30.623333);
$coords[] = new Coordinate(50.75, 30.723333);
$polyline2 = new Polyline($coords, [new IconSequence(new Symbol(SymbolPath::CIRCLE))], ['fillOpacity' => 0.5]);
// AND
$map->getOverlayManager()->addPolyline($polyline1);
$map->getOverlayManager()->addPolyline($polyline2);
// OR
$map->getOverlayManager()->addPolylines([$polyline1, $polyline2]);
Hi. I'm currently on Laravel 5.4 and need your urgent advise, 'cause all my effords to make a $map->getOverlayManager()->addPolyline($polyline); or $map->getOverlayManager()->addPolylines([$polyline1, $polyline2]); is ended with light-grey screen in place of map. Currently I was able to display only 1 polyline.
The text was updated successfully, but these errors were encountered: