Posts by Julio Ramos • 19 points
4 posts
-
0
votes2
answers142
viewsQ: How can I separate this javascript string into two php variables?
Follows the code____________________________________ <!DOCTYPE html> <html> <body> <p>Click the button to get your coordinates.</p> <button…
-
0
votes1
answer530
viewsQ: How can I catch only the latitude and longitude of return of this Function(Location)?
<script type="text/javascript" src="//js.maxmind.com/js/apis/geoip2/v2.1/geoip2.js"></script> <script type="text/javascript"> var onSuccess = function(location){ var x =…
-
0
votes1
answer46
viewsQ: How can I pass more than one point to google maps in that while?
I wanted to mark all the points where the approximate distance is less than 25 km, but it doesn’t even show the first point that is the nearest (4km), it shows the last one (18km). Follow what comes…
-
1
votes3
answers163
viewsQ: How can I pass php data to javascript in this case?
I need to pass the latitude and longitude data of the addresses that are within 25km’s radius to the javascript function that creates the map, follow the code I’ve made so far(Yes, I’m beginner):…