Forum Replies Created

Viewing 1 post (of 1 total)
  • in reply to: Retina Map Pin Icon #59882
    hallmarkpartners.com
    Member
    Post count: 1

    Found an answer, navigate to:

    /wp-content/themes/dante/js/functions.js

    edit Map Section, roughly line 2600 to read:

    // ADD MARKER AFTER 1 SECOND
    jQuery(mapContainer).appear(function() {
    setTimeout(function() {
    if (pinLogoURL) {
    var companyLogo = new google.maps.MarkerImage(pinLogoURL, null, null, null,
    new google.maps.Size(150,75),
    new google.maps.Point(0,0),
    new google.maps.Point(75,75)
    );

    The important part to add is null, null, null, as this allows you to upload a @2x resolution image for the pin marker image.

Viewing 1 post (of 1 total)