Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been trying to rack my brain around this for ages....

I currently have a working map that gives me directions and can drop the default Google Markers and place a custom marker on the given coordinates, BUT, it won't let me changes the start and end markers no matter what I try and do.

This is my current working code:

    <script src="http://maps.google.se/maps/api/js?sensor=true"></script>
    <script>
        (function () {
            var directionsService = new google.maps.DirectionsService(),
                directionsDisplay = new google.maps.DirectionsRenderer(),
                createMap = function (start) {
                    var travel = {
                            origin : (start.coords)? new google.maps.LatLng(start.lat, start.lng) : start.address,
                            destination : "-31.432389,152.908482",
                            travelMode : google.maps.DirectionsTravelMode.DRIVING

                        },
                        mapOptions = {
                            zoom: 10,
                            // Default view
                            center : new google.maps.LatLng(-31.432389,152.908482),
                            mapTypeId: google.maps.MapTypeId.ROADMAP
                        };

                    map = new google.maps.Map(document.getElementById("map"), mapOptions);
                    directionsDisplay.setMap(map);
                    directionsDisplay.setPanel(document.getElementById("map-directions"));
                    directionsService.route(travel, function(result, status) {
                        if (status === google.maps.DirectionsStatus.OK) {
                            directionsDisplay.setDirections(result);
                            directionsDisplay.suppressMarkers = true;

                        }
                    });
                };


                // Check for geolocation support    
                if (navigator.geolocation) {
                    navigator.geolocation.getCurrentPosition(function (position) {
                            // Success!
                            createMap({
                                coords : true,
                                lat : position.coords.latitude,
                                lng : position.coords.longitude
                            });
                        }, 
                        function () {
                            // Gelocation fallback
                            createMap({
                                coords : false,
                                address : "-31.432389,152.908482"
                            });
                        }
                    );
                }
                else {
                    // No geolocation fallback
                    createMap({
                        coords : false,
                        address : "-31.432389,152.908482"
                    });
                }
        })();
    </script>

Any help would be greatly appreciated! Thanks.

share|improve this question
I don't think the code you posted can work, but in any case, what is the question? – Marcelo Jul 10 '12 at 11:32

closed as not a real question by casperOne Jul 10 '12 at 18:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Here is an example of one way to change the start/end icons to custom icons.

share|improve this answer
haha that is exactly one of the codes I was trying to implement but I just couldn't get my head around it because to have a 'current location' in the code you basically need to rewrite to... Perhaps I need to walk away and come back to it later with a fresh head. And thanks for the quick reply! :) – Michael Marchment Jul 10 '12 at 12:30
It is not as hard as that. If all you want to do is change the markers, set the suppressMarkers option on the direction renderer, then use the custom marker part of that code to create them, or even looking at the markerOptions options of the direction render, specify your custom marker using that (but then both the start and end marker need to be the same. – geocodezip Jul 10 '12 at 12:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.