I am a new Android developer. I am developing an application about map using Google Map. I created a Polygon on the map and I want to detect through GPS when the position is within Polygon but I do not know how to detect it.
Could you please provide any example or solution? Thank you and sorry for my English.
Related
I want to develop an app using rssi of ble,wifi to set position of my users in indoor environment, or something else for example when they are near specific location send theme notification.
I have to add my information and markers to google map. and my own simple map.
it is like customized map for my users in my app.
I have this place in map but I want to add walking path and more information.
right now it does not have anything. no walking path for example.no stores information and exact location.
and i want add something like these or much simpler:
Sample indoor map 1
Sample indoor map 2
as I see you mentioned indoor map is just available for certain country.
this link : are available in select locations
and again you mentioned : Display a floor plan as a ground overlay or tile overlay on your map. This will enable only users of your application to view your floor plans.
my country is not the part of your supported list (sanction). but the google maps app is still working here.
I just want using google map to be shown with my customized map and information,markers just for my users in my app not public.
is it possible ?
I place my beacon and the position of the user is set by my algorithm in map. I do not know that I'm in right way or not. where I should start?
thanks a lot.
You can use Google Maps SDK for Android to create a map in your android app. You can customize the map on this sdk like putting markers, info windows, styles etc.
At high zoom levels, the map shows floor plans for indoor spaces which are available in select locations you mentioned.
As stated in the Maps SDK for Android documentation - If floor plan data is not available for a building that you would like to highlight in your application, you can:
Add floor plans to Google Maps directly. This will make your floor plans available to all users of Google Maps.
Display a floor plan as a ground overlay or tile overlay on your map. This will enable only users of your application to view your floor plans.
Hope this helps!
I'm a beginner in the development for android, and I'm working on a small application integrating the Api google map and direction.
My app is based on an area in which google map did not consider all the routes, so I had to create my own polyline, and I would like them to be taken into account in the itinerary calculation of the direction api. I did some research but without any expected result.
Thank you in advance for your help.
I'm building google maps mobile application using google maps API v2 and I managed to draw a route between two locations. The problem is that I want to show all the possible routes to the direction location not just one. Can you help me, please?
I'm using Android Studio.
I want to show the user nearest landmarks on the android phone. I can read the GPS coordinates, but don't know how to get landmarks using the GPS coordinates. Is there any easily manageable way? Could someone please put some light on this?
Are you doing this through Google Maps? Is there something in the Google Maps API that lets you get landmarks?
Edit:
Google Maps Places: http://code.google.com/apis/maps/documentation/places/
I would like to make an Android application using Google Map.
Can I show weather report on that map? If it's possible, which services has needed to get the weather report on map?
mapView = (MapView)findViewById(R.id.myMapView);
mapView.setSatellite(true);
How to show the weather report on map?
To do this you would want to look into overlays. These allow you to position any information over your map and unlock a lot of powerful features for your users. I cant give a specific example since I don't know what data source you are getting weather information from. However I would suggest using the map center as your lat/lng and using a weather API to find the current conditions. Then overlay that on the map.