Google map ignoring marker size for retina icons -


i have google map driven advanced custom fields. have created icontype dictate icon used marker depending on custom field.

my marker images 80px square want force them 40px square retina reasons. have tried lots of variations of code i've found via google etc nothing works , size gets ignored showing markers @ larger 80px. guess because have 2 icons depending on icontype?

can me force size of these markers 40px square please...

function add_marker( $marker, map ) {  // var var latlng = new google.maps.latlng( $marker.attr('data-lat'), $marker.attr('data-lng')); var icontype = $marker.attr('data-icon'); var iconbase = '<?php echo get_template_directory_uri(); ?>/assets/'; var size = new google.maps.size(40, 40);  if (icontype === 'costa') {     iconname = 'costa@2x.png'; } else {     iconname = 'starbucks@2x.png'; }  // create marker var marker = new google.maps.marker({     position    : latlng,     map         : map,     clickable: false,     animation: google.maps.animation.drop,      icon: iconbase + iconname, });  // add array map.markers.push( marker );  // if marker contains html, add infowindow if( $marker.html() ) {     // create info window     var infowindow = new google.maps.infowindow({         content     : $marker.html()     }); }  

}

i did recently, , believe you'll need use new icon object specify custom icon properties, , use size , scaledsize properties. fixed issues following guide:

how add retina ready pin marker google maps?


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -