Tagged Questions
0
votes
2answers
104 views
Test point inside a polygon
I'm trying to test if a point is insde a polygon o not, and looking in SO. i found some codes that does it, but I tried, and I don't know what I'm doing wrong...
I got to Vectors to save x and y ...
0
votes
2answers
198 views
Test of Point inside polygon in Android
The other day I did a class in Java to calculate if a point(X,Y) is inside a polygon. (X and Y are double, because will be geo-coordinates).
I kwow that Java has the class Polygon, but I had to use ...
0
votes
0answers
66 views
Android OpenGL ES 1 - Polygon Edge
I am drawing a an arrow in using opengl es 1.0. I drew the arrow using a rectangle as the shaft and a pyramid as the tip. When the arrow is rotating from certain angles the shaft can be seen through ...
0
votes
1answer
99 views
Performance issue when drawing Polygones on Api Map V2 Android
Map is very slow when I try to display lots of Polygones on android
Here is the following code that displays approximately 1000 polygones on GoogleMap.
List<LatLng> list = new ...
1
vote
2answers
123 views
Unable to fill the polygon with a color
I am adding a Polygon like this:
PolygonOptions options = new PolygonOptions();
for (int x = 0; x <= 360; x++) {
//get LatLng ll
options.add(ll);
}
options.strokeColor(Color.BLUE);
...
0
votes
0answers
193 views
create box2d andengine box2d body without sprite
hey I have created my body using following code: (please read full description)
Body polyBody;
final BodyDef mBodyDef = new BodyDef();
mBodyDef.type = BodyDef.BodyType.DynamicBody;
...
0
votes
1answer
130 views
Android maps v2, polygon error
I am having trouble adding my polygon with holes to my google map.
It was working with polylines (and I think once with polygon) but now it doesn't, whether the holes logic is there or not.
Here is ...
0
votes
1answer
220 views
How to draw a Polygon on MapView, fill it, and put a onTouch Event on it
Is it possible to set an EventListener in a drawn Polygon in a osmdroid MapView Overlay ? I would like to print on a Overlay and after touching it I would like to change its color or handle data ...
-3
votes
1answer
168 views
osmdroid draw polygon on map
I want to draw something like this:
gooogle maps example
but using osmdroid with OpenStreetMaps.
I have a set of GPS points prepared but I cannot find ay working example
Has anyone done this?
1
vote
1answer
208 views
How to manage InfoWindows for polygons on Android Google Maps API v2
I'm looking for a way to manage Info Windows (open, close, set content) for polygons, just like it's done for markers
I can probably listen for onClick event and put a some hidden marker there and ...
0
votes
1answer
196 views
Android: Draw Polygon on OSM MapView (OSMDroid)
Is it possible to draw a polygon on the mapview of OSMDroid? It should scale easy with the Mapview so I didn't want to use the canvas. Any advice?
I have my own MapOverlay (extends ...
0
votes
0answers
47 views
Android polygon overlays with ItemizedOverlay
I am using a MapView in my application and want to display some overlays containg a pin icon and possibly a polygon zone (in that case the pin is in the middle of the zone). How can I achieve it with ...
1
vote
1answer
180 views
Android Freehand bitmap croping
I know we can crop a bitmap in rectangular shape using :
Bitmap.createBitmap(source, x, y, width, height)
But I want to know to crop a bitmap in freehand mode or some polygon shape. Its best ...
0
votes
3answers
577 views
Android Canvas: Polygons are deformed when filled (Paint.Style.Fill)?
I'm trying to cover an area on a map with an irregular polygon in android using Google Maps engine.
This is a sample code I'm testing with... Overriding the draw method of the Overlay class.
...
1
vote
0answers
70 views
Android - set draw style using Path
I'm using Path to draw polygon in Android.
At moment I'm repeating draw with different style - first for polygon and second for border.
I want to draw them at once.
How to set dirrerent color for ...
2
votes
1answer
882 views
polygon to polygon collision in libgdx
I cant find out why i got an ArrayIndexOutOfBoundsException if someone can give me a hint i will be so pleased. Thanks
I create to polygons like this
float[]vertice={.1f, 2.7f, .4f, 4.3f, 3.4f, ...
1
vote
2answers
993 views
issue with drawing polygons on a Google maps View on Android
so im making a game for android and i need to overlay regions or polygons on a google maps window.
so far i have made the following:
class polygonOverlay extends Overlay {
//this is the ...
4
votes
1answer
899 views
Drawing polygons in XML with Android
I was looking for a way to draw a polygon, specifically a triangle, for an Android app.
I read about creating an XML file and using it in a layout for certain shapes with ShapeDrawable here, but as ...
0
votes
2answers
515 views
What's the best way to do collision detection?
I have a need to define a polygon that would be the "legal" area, and allow a user to move a rectangle around within that polygon, preventing them from moving the rectangle anywhere where its points ...
3
votes
2answers
751 views
Collision Detection With Polygons
I was wondering if anyone could give me an idea on how to implement first a class to define a polygon, and second how to detect collisions between two polygons using this class. I am working in Java ...
2
votes
0answers
260 views
Capturing overlay tap event on android mapview
I am working on creating an android app that displays a polygon overlay onto a mapview over the counties of California. I am having no problem drawing the polygons and seeing them on the map.
I ...
0
votes
1answer
874 views
Cutting a multipoint ploygon out of Bitmap and placing it on transparency
I have a bitmap out of which I'm cutting out a multipi point polygon. I'm curious what the correct process is for taking the pixels within the arbitrary shape and copying them onto a new bitmap where ...
2
votes
0answers
476 views
Android MapView path.draw draws crazy polygon lines all over the place
I've been struggling for a couple of weeks now with google's android mapview.
I'm drawing a large amount of polygons with a large amount of points. on average 15 polygons and around 1000 points each.
...
0
votes
1answer
185 views
drawing poly with holes in on android
i have a master polygon, then i have regions i dont want to be drawn inside, specified as other polygons. I'm using android 1.6 which I think has some form of opengl es 1.x. I've been reading up on ...
0
votes
1answer
827 views
OpenGL drawing a Hexigon with vertices
Im trying to make a basic shape ( Hexigon ) to start and learn some basics about OpenGL on the Android platform and i have a little problem.
I have successfully made a pointy Hexagon, but when i ...
-2
votes
1answer
1k views
How to draw polygon overlay on Google-Maps in Android? and add the button like this?
I need to finish my thesis.
I want to make like an GIS on my android.
All I need is build android application that can show the map, draw polygon overlay on it, add house button in it, and save as an ...
0
votes
1answer
418 views
In polygon test, hit test, is a point in a polygon? method
I have created a method called isInPoly that receives the x and y coordinates of 2 lines (so 8 coordinates) and determines where the 2 lines intersect. I know I should have called the method something ...
2
votes
2answers
1k views
Android maps custom overlay not visible
I am trying to display a polygon on a mapview in android. I have created a custom overlay class(polygon) and overridden the draw method. After adding an instance of polygon to the mapview's overlay ...
0
votes
2answers
937 views
Draw a convex hull using the given points in java/android
I have some 2D points given and i want to draw a polygon using those points. This polygon must pass through all the given points means there is no such point which is inside or outside the polygon.
...
0
votes
3answers
1k views
How can I determine if a location (lat/long) is within a certain polygon with corners that all have a given lat/long as well in Android?
I've searched for a long time and haven't quite found the answer. There are several that come close, but nothing that seems to exactly answer my question! I would like to take a set of coordinates, ...
1
vote
1answer
4k views
Drawing an empty polygon given a set of points on a Map Overylay (Android 2.1)
I've set of n points and I want to draw a n-sided polygon using these points.
I tried using android.graphics.path (please see below).
Path path = new Path();
Vertex currVtx;
for (int j = 0; j ...



