Tagged Questions
Polyline in computer graphics is a continuous line composed of one or more line segments.
6
votes
3answers
7k views
How to add markers on Google Maps polylines based on distance along the line?
I am trying to create a Google Map where the user can plot the route he walked/ran/bicycled and see how long he ran. The GPolyline class with it’s getLength() method is very helpful in this regard (at ...
4
votes
2answers
288 views
How to find out if two PolyLines intersect
I have a problem finding out if two PolyLines intersect.
Well the main objective is to compare last X and Y with the other PolyLine and find out if it's colliding aka intersecting with it.
There ...
4
votes
2answers
305 views
How can I access, then animate an existing leaflet map polyline using Javascript?
Can anyone suggest how I can access then animate the red polyline here using javascript:
http://gymloop.lukem.co.uk (login: User2/pass2, then select 'Challenges')
I want to animate the polyline from ...
4
votes
1answer
2k views
How to create direction arrows for my polylines in Google Maps (V3)?
I have routes as Google Maps Polylines in my project (an example, http://rutasgdl.com/rutas/626-2 ) and I want to add direction arrows to the routes. I want something like this (sadly, it is for ...
3
votes
1answer
204 views
Algorithm to find intersections between polylines
Bentley-Ottmann algorithm works for finding intersections of set of straight lines. But I have lot of polylines:
Is there a way to find intersections of the set of polylines?
I'm figuring out, but ...
3
votes
1answer
112 views
Google Maps 3 Redraw Polyline Flickering
I am drawing a Polyline with a fairly large number of lat/lng points (~ 1000). I have two sliders (start and end) that allow the user to adjust the time bounds which then updates the Polyline to show ...
3
votes
3answers
699 views
C# to VB.NET Conversion (Google Polyline Algorithm Decoder)
I have some C# code that decodes map paths encoded using Google's polyline algorithm and am trying to convert it to VB.NET.
Here's the C# code, which works fully:
Collection<Double> ...
3
votes
3answers
1k views
Customize rounded corner radius of a WPF polyline
is it possible to set the corner radius of a WPF polyline to a custom value.
For a WPF border it is possible.
In my opinion, the polyline can only set StrokeLineJoin="Round", but not the radius:
...
3
votes
2answers
2k views
google maps api v3: add point on polyline beetwen two existing points on click polyline event
How can I add point on polyline beetwen two existing points on click polyline event?
Thank you!
3
votes
2answers
484 views
Is it possible to change the size of a dash of a line?
I am drawing a dashed line on the TImage Canvas and found out that the size of dashes is way too big for the drawing area. Is there a way to change the size of dashes of lines drawn on canvas?
This is ...
3
votes
2answers
561 views
Determining if a point is on a road
If I have a polyline that describes a road and I know the road width at all parts, is there an algorithm I can use to determine if a point is on the road? I'm not entirely sure how to do this since ...
2
votes
3answers
189 views
Create a polygon around a polyline like a buffer
I have looked around to find an example of how to take a polyline and create a buffer around it so I end up with a polygon.
So far I found out I need Minkowskis Sums to do so, but I can't get my head ...
2
votes
1answer
188 views
google maps v3: Invalid value for constructor parameter 0 while drawing polylines
I have a problem when constructing a polygon. The error message says something like:
Invalid value for constructor parameter 0: (49.27862248020283, -122.79301448410035),(49.277964542440955, ...
2
votes
1answer
871 views
Map View draw directions using google Directions API - decoding polylines
I'm trying to use the goole directions API to show directions on my mapview but i am having difficulties getting the data from the JSON reponse. I can get the "levels" and "points" strings but can ...
2
votes
1answer
775 views
Styling a Google Maps v3 Polyline with Dashes or Dots?
I'd like to take a Google Map v3-based map with some custom polylines, and make some of those lines dotted or dashed. I can't seem to find any way of doing this. Is it possible, and if so, how?
2
votes
4answers
181 views
Algorithms to normalize finger touch data (reduce the number of points)
I'm working on an app that lets users select regions by finger painting on top of a map. The points then get converted to a latitude/longitude and get uploaded to a server.
The touch screen is ...
2
votes
1answer
633 views
drawing a line in google maps perpendicular to two points
I have two coordinates for which I would like to draw a perpendicular line of equal length. Is there either a simple google maps offset for this or a clean javascript approach by which I might ...
2
votes
1answer
791 views
How to get screen XY from google maps (V3) LatLng?
I have polyline in my map. I want to know the pixel (screen) xy-coordinates, when user clicks the polyline. Click event only returns the LatLng object, so do anyone have a clue how to get the pixel ...
2
votes
2answers
799 views
Rendering bug in Bing Maps MapPolyline on WP7 if zoomed out?
I'm having some trouble with MapPolyline. It somehow renders a gps trace incorrectly if zoomed out.
At a low mapControl.ZoomLevel (eg 9) some lines/edges are still drawn but they shouldn't. Here are ...
2
votes
2answers
2k views
Google Maps API: Calculate Center/Zoom of Polyline
I have an overlay that is dynamically generated from user data, so I need to know how to find the center of that overlay.
Currently, I am just using the first coordinates from the overlay, but that ...
2
votes
1answer
484 views
Prevent two google maps polylines overlapping
I'm making a google maps app that displays GPX tracks. Some of the tracks do overlap for a distance. They do not have identical points, but the polylines seems identical when they are drawn. This ...
2
votes
1answer
841 views
Why the Path and Polyline have different renderings in WPF?
Why the Path and Polyline have different renderings in WPF?
This is happening both in code and blend, maybe a I missing something or this
is just a anti aliasing effect.
<Window
...
2
votes
2answers
3k views
WPF Polyline relative point values and stretch for drawing a graph
I'm trying to create a pretty simple graphing component that consists of a series of Polylines within the same grid cell that represent graph lines. My strategy is to look at all the points in my ...
2
votes
1answer
966 views
Google Maps v3, polyline mouse events
Is it possible to detect when the mouse has entered and exited a polyline region in Google Maps v3?
As a particular use-case, I would like to change the color of a polyline when then mouse is ...
2
votes
3answers
1k views
Smooth polyline with minimal deformation
I've got a 2D closed polyline, which is reasonably smooth. The vertices that define the polyline however are not spaced equally. Sometimes two will be very close, sometimes as many as four will be ...
1
vote
3answers
54 views
Drawing two polylines from one PointCollection throws exception (Silverlight 5)
I'm using Silverlight 5 with MVVM.
I have a ViewModel that is a Singleton. The ViewModel exposes a PointCollection that I am using to draw a Polyline in one of my views.
If I try to draw the same ...
1
vote
1answer
86 views
How to convert shape file type from polyline to polygon?
I have a shape file whose file type is polyline. But I want convert it to polygon. Is it possible with free sources? How can I convert shape file type from polyline to polygon?
1
vote
1answer
42 views
How to remove circle from Google Maps V3?
I have drawn circle using
circle = new google.maps.Circle({
map: map,
radius: r, // 1 miles in metres = 1609.3 m
strokeWeight:1,
strokeOpacity:0.5,
...
1
vote
1answer
39 views
Efficient way to compute coincidence of space and time
Given a 3-dimensional polyline P = {(x1, y1, t1), ..., (xn, yn, tn)} and another polyline Q = {(x1, y1, t1), ..., (xm, ym, tm)} (m not necessarly equal to n, so polylines could have different length), ...
1
vote
0answers
62 views
googleMap JavaScript
How to draw a polyline between 2 points when user clicks a submit button, and reset it when user clicks reset button.
i used this code to draw a polyline in plotting function() and called it using ...
1
vote
2answers
46 views
Non-empty size information for cell arrays
In MATLAB I would like to keep a list of polylines - containing vertices (x,y) - in a container and I thought the best idea is to use cell arrays for this task. Each line would be represented in a row ...
1
vote
0answers
168 views
iPhone - set MKPolylineView lineDashPattern to be animated
I have been trying to work on a application using the MapKit and MKPolyline.
I have gotten the annotations and paths drawn on the map, however I am trying to change the lineDashPattern to be a set of ...
1
vote
1answer
78 views
Compute the tortuosity of a polyline
I have series of (x, y) coordinates, if joined this represent a polyline. This polyline is a geographic track.
All that I need is to get the polyline tortuosity. It should be usefull a sort of ...
1
vote
2answers
233 views
Draw polyline on PictureBox
I want to draw polyline (a continuous line composed of one or more line segments) on PictureBox.
In this we can create multiple lines by specifying the endpoints of each segment as well as calculate ...
1
vote
0answers
170 views
remove polyline from google map between two points
I have two arrays of locations. and i want to display two different polylines on single map.
but when i tried for that there is one polyline between last location of first array to first location of ...
1
vote
3answers
628 views
Highlighting borders of state and cities of US in Google Map API 3
I have a scenario where I have to highlight borders and shade a state or city after geocoding it (when I got the lang and lat).
How can I do this, do I need to have a complete information of a city ...
1
vote
2answers
251 views
How can I animate a route path on a custom map in javascript?
I would like to overlay a dynamic route path on a custom geographical map image in a web application. The path displaying the route should dynamically fill (and animate on page load) with a different ...
1
vote
0answers
269 views
Google Maps API V3 - adding variable to addListener(poly, 'click')
SOLVED
Already solved it, made a mistake. I thought you couldn't set a var to the poly object, but you can.
QUESTION
I'm trying to create a tool where users can create multiple polylines and save ...
1
vote
1answer
378 views
WPF: Display polyline and points simultaneously
I have a list of line segments and each line segment contains a list of points. Being contained on the same canvas, I want to display each line segment and simultaneously mark each point location (ie ...
1
vote
1answer
214 views
Binding of a Polyline. What am I doing wrong?
I am trying what I thought a simple thing: drawing lines of a list of point.
If I put the list statically in the xaml of my window everything is ok.
If I do the bind, then nothing is displayed.
the ...
1
vote
2answers
757 views
Google maps getdirections api - polyline
I am using Google maps getDirections api. I use JSON type webservice to get the info from Google webservice. Here is the sample JSON output from webservice. I am using Java to process the result. I ...
1
vote
1answer
399 views
DefaultHandler class in android doesnt read entire string from xml
I am extending DefaultHandler to parse an xml.
I am parsing this page:
http://maps.googleapis.com/maps/api/directions/xml?origin=staten%20island&destination=florida&sensor=false
I am getting ...
1
vote
1answer
499 views
Removing polylines from google maps
I'm using the DirectionsRenderer to display a path, though after I'm done with that I'd like remove the polyline and carry on with things. I don't seem to have control over markers and polylines ...
1
vote
1answer
1k views
Polyline using DataBinding and PointCollection for continuous update
first of all I describe my objective I want to achive. I want to visualise a continuous data stream (maximum 1000 values per second but could be reduced). This data stream should be visualised as a ...
1
vote
3answers
547 views
WPF: How to set offset to PolyLine
I have 3 PolyLines that have same geometry.
I would like to set offset to two of them, so they would appear right next to each other.
How can i do that?
thanx.
1
vote
2answers
668 views
Getting the bounds of a polyine in Google Maps API v3
Is there any easy ways to find the bounding box of a polyline using Google Maps API v3? I'm working on a project where I need to update the bounds as data is added and removed from the map. This is ...
1
vote
0answers
524 views
WPF line, polyline fast rendering
I have a problem and found something about it here: http://stackoverflow.com/questions/1150060/how-to-draw-line-of-ten-thousands-of-points-with-wpf-within-0-5-second
We need something like this, but ...
1
vote
1answer
1k views
Parsing Json to display polyline/markers with google maps v3
I'm using Jquery getJson() to generate a json to be displayed on the google maps 3 api.
I would like to display the poly line as per the :
polyline-simple example
function initialize() {
var ...
1
vote
2answers
1k views
GMap Polyline position of center
When I create Gmap she needed to establish the center and zoom
Once we've created a map via the GMap2
constructor, we need to initialize it.
This initialization is accomplished
with use of ...
1
vote
1answer
2k views
Google Maps geocoding (address to GLatLng)
I am trying to draw a geodesic polyline with Google Maps JavaScript API from two address points.
var polyOptions = {geodesic:true};
var polyline = new GPolyline([
new GLatLng(),
new ...