All Questions
Tagged with google-maps-api java
5 questions
1
vote
0
answers
184
views
Why do I get incomplete answers using google maps api in java?
I'm using google maps API in java to check wether some places are correct, but I don't get all possible responses:
GeocodingApiRequest req = GeocodingApi.newRequest(context).address("Sydney");
try {
...
0
votes
1
answer
12k
views
How can I see specific location on java desktop application?
I want to see a desired lat/lon point on the google maps on my java desktop application. I made some search so I think google map API is something which I looking for. Am I right? and Is there any ...
2
votes
0
answers
2k
views
How to check if a point is within bounded rectangle from Java
I make an AJAX request to retrieve data from a mysql database. I add the data to google.maps.Data layer as geojson. I would only like to load the data based on the viewport. To obtain the viewport ...
3
votes
2
answers
5k
views
Are there any web services providing country border data?
I am an Android developer (working in Java) and want to write a geographical quiz game. The quiz will need a list of countries and will randomly choose one to highlight on a map (probably using Google ...
1
vote
0
answers
2k
views
Draw postgis geometries in google maps api
Postgis have a base with a table of data lines and other points.
I'm doing a java applet to query these tables and space to draw on google maps.
My question is: what better way to spend these ...