GLatLng.prototype.moveTowards = function(point, distance) { var lat1 = this.lat().toRad(); var lon1 = this.lng().toRad(); var lat2 = point.lat().toRad(); var lon2 = point.lng().toRad(); var dLon = (point.lng() - this.lng()).toRad();
// Find the bearing from this point to the next. var brng = Math.atan2(Math.sin(dLon) * Math.cos(lat2), Math.cos(lat1) * Math.sin(lat2) - Math.sin(lat1) * Math.cos(lat2) * Math.cos(dLon));
var angDist = distance / 6371000; // Earth's radius.
// Calculate the destination point, given the source and bearing. lat2 = Math.asin(Math.sin(lat1) * Math.cos(angDist) + Math.cos(lat1) * Math.sin(angDist) * Math.cos(brng));
function moveAlongPath(points, distance, index) { index = index || 0; // Set index to 0 by default.
if (index < points.length) { // There is still at least one point further from this point.
// Construct a GPolyline to use the getLength() method. var polyline = new GPolyline([points[index], points[index + 1]]);
// Get the distance from this point to the next point in the polyline. var distanceToNextPoint = polyline.getLength();
if (distance <= distanceToNextPoint) { // distanceToNextPoint is within this point and the next. // Return the destination point with moveTowards(). return points[index].moveTowards(points[index + 1], distance); } else { // The destination is further from the next point. Subtract // distanceToNextPoint from distance and continue recursively. return moveAlongPath(points, distance - distanceToNextPoint, index + 1); } } else { // There are no further points. The distance exceeds the length // of the full path. Return null. return null; } }
var map = new GMap2(document.getElementById('map_canvas'));
var points = [ <? $result = mysql_query("SELECT * FROM location ORDER BY id DESC LIMIT 50"); while($row = mysql_fetch_array($result)){ echo 'new GLatLng('.$row['latitude'].', '.$row['longitude'].'),';
}?> ];
var polyline = new GPolyline(points, '#f00', 6);
var nextMarkerAt = 0; // Counter for the marker checkpoints. var nextPoint = null; // The point where to place the next marker.
// Draw the path on the map. map.addOverlay(polyline);
// Draw the checkpoint markers every 1000 meters. while (true) { // Call moveAlongPath which will return the GLatLng with the next // marker on the path. nextPoint = moveAlongPath(points, nextMarkerAt);
if (nextPoint) { // Draw the marker on the map.
map.addOverlay(new GMarker(nextPoint));
// Add +1000 meters for the next checkpoint. nextMarkerAt += 10000; } else { // moveAlongPath returned null, so there are no more check points. break; } } </script> </body> </html> [/CODE]
to display a map with a route on it i need to change a few things
1......Only have markers where there are GEO locations()
2......I want to be able to click the markers or hover and get more information like time (stored in database with $row['latitude'] and $row['longitude'])
You'd have to show me an example of a listing that says Gen 1, usually i'd expect that to mean Snapdragon Gen 1 (a type of chipset, which the Pixels don't use).
Pixel 7 - White - 128gb - Unlocked - 85%+ battery - Grade B+ - $159 with free delivery - https://www.ebay.com/itm/398046617206
Pixel 7 - Obsidian - 128gb - Unlocked - 80%+ battery - Very Good - $157 with free delivery - https://www.ebay.com/itm/355617734563
Both look to be sold by companies with good feedback, dealing with refurbished phones and state the phones are unlocked with a clean IMEI.
Obviously I can't vouch for either company though, but the listings look good in my opinion.
Because Chrome is doing it.
And no one said anyone had to update immediately. That's silly. They could update every day for all I care as long as it's fast, and the next time the browser restarts, you're good. And the basic point is not to tee it up for bigger updates. As it is right now, all the windows I had open reopen anyway except inprivate.
Why? Does anybody actually want this? The constant need to close all browser sessions and wait for a new version to install, just so that there’s a integrated coupon manager feels like a waste of everyone’s time
Question
Craig Hopson
hi guys been using this code
to display a map with a route on it i need to change a few things
1......Only have markers where there are GEO locations()
2......I want to be able to click the markers or hover and get more information like time (stored in database with $row['latitude'] and $row['longitude'])
Link to comment
https://www.neowin.net/forum/topic/1120438-google-map-api/Share on other sites
1 answer to this question
Recommended Posts