Questions tagged as 'google-maps'

4
answers

What is the cost of using the Google Maps API to create routes?

I'm creating an app where I get the user's current position and create a route to a certain point.  A friend commented that this route service offered by Google is paid for.  Could anyone or could you please tell me more about these values? T...
asked by 14.02.2015 / 22:40
1
answer

Is it possible to add personal sites to google maps v3 autocomplete?

I wanted to use the google address search but also wanted to introduce some personal areas. In div that is generated by google I can add the fields I want, but I can not create a function in click because there must be something in...
asked by 26.11.2014 / 16:33
1
answer

How do I get the coordinates of a point at a certain distance from my location?

Speak people, I'm making an app, and in an activity of the precise app from my location give a "zoom" in the maps as the user slides a seekBar, according to the image. I've been thinking of using the Bounds feature in maps, where I can pa...
asked by 07.04.2015 / 14:43
1
answer

How do I initialize Maps in a specific place?

How do I make the app, when I open Google Maps, zoom in to a specific location (for example, in a specific coordinate)? The demo codes it shows ALL the continents when I boot and need to zoom in until my markup: public class MapsActivit...
asked by 15.03.2015 / 05:15
1
answer

Remove locations and bus stops / stops from Google Maps

I have this code: <script> function init() { var myLatlng = new google.maps.LatLng(34.04, -118.24); var myOptions = { zoom: 13, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map =...
asked by 07.07.2017 / 19:04
1
answer

Use registered addresses in the database in JavaScript / Google Maps

I have in a database the following columns: client name, active or inactive, address and lat and lng coordinates. I need to develop an application in PHP that will display in the Google Maps green bookmarks the active clients, and red the ina...
asked by 19.11.2014 / 13:54
1
answer

Requests in AJAX works in WebView?

I have the following WebView : WebView myWebView = (WebView) findViewById(R.id.webview); myWebView.getSettings().setJavaScriptEnabled(true); myWebView.getSettings().setBuiltInZoomControls(true); myWebView.loadUrl('http://192.168.0.4:8080...
asked by 23.05.2017 / 17:11
1
answer

PHP + Google Geocode API

Follow the method code: function GetGeoCode($address) { $geo= array(); $geocode = file_get_html('http://maps.google.com/maps/api/geocode/json?address=' . $address . '&sensor=false'); $output = json_decode($geocode); echo '...
asked by 01.11.2015 / 06:34
1
answer

Compare Coordinates

In my mysql I have a column where it contains positioning coordinates coming from a polygon, drawn in google maps api, the question is how can I compare the coordinates I have inside the column with a specified coordinate coming from a GET I'...
asked by 26.03.2016 / 20:46
2
answers

Google Maps with multiple markers from the database

I have a code where it takes the longitude and latitude from where you are and places it on a map. I need to have all the latitudes and longitudes of the database with markers on each of these points appear on this map. My code is in Codeigniter...
asked by 11.08.2015 / 14:21