Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code:

    var personPath = "M255.968,166.154c34.206,0,61...."

this.drawMarker = function (message) {
    var longitude = message.longitude,
        latitude = message.latitude,
        text = message.title,
        city = message.city;

    var coordinates = self.map([longitude, latitude]);
        x = coordinates[0];
        y = coordinates[1];

    self.member = self.svg.append("svg:g")
        .attr("transform", function() {
             return "translate(" + x + "," + y + ")"; });

    self.member.append("svg:path")
    //self.member.append("svg:circle")
        .attr("d", personPath)
        .attr("transform","scale(0.07)")
        //.attr("r", 5)
        .attr("class", "member")
        .style("fill", "steelblue")
        .on("mouseover", function(){
            d3.select(this).transition()
                //.attr("r", 20)
                .style("fill", "red")   
            })
        .on("mouseout", function() {
            d3.select(this).transition()
                //.attr("r", 5)
                .style("fill", "steelblue")
            });

    self.svg.append("svg:text")
        .text(function(d) { return city; })
        .attr("x", x)
        .attr("dy", y + 20)
        .attr('text-anchor', 'middle')
        .attr("class", "city");

and which is displayed:

var self = this,
    width = $("#map").width(),
    mapCanvasHeight = (width * 0.45);

this.init = function() {
    self.drawMap();
};


this.drawMap = function () {
    var data;

    // Most parts of D3 don"t know anything about SVG—only DOM.
    self.svg = d3.select("#map").append("svg:svg")
        .attr("width", "100%")
        .attr("height", "100%")
        .attr("viewBox", "0 0 " + width + " " + mapCanvasHeight);

so i basically have the lon/lat which are passed in the 'message' that are then turned into coordinates.

the problem i have is that for the 'circle' the placement of the 'circle' is in the correct place, but i would like to use the personPath scale it and display this centered on the 'coordinates'

any advise much appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.