In case, that an individual icon would not be possible, our customer wanted one of the marker icons from google, but bigger in size. So i searched in this forum and also in google how to do this. In your forum there was already a post, where a user first asked this question, how to get the size of icons bigger, but then replied that he got them bigger. But he didnt complain how to change the size. On Google Maps API i found this piece of code, but i dont know where to put it in...
Code: Select all
var image = {
url: 'images/beachflag.png',
// This marker is 20 pixels wide by 32 pixels tall.
size: new google.maps.Size(20, 32),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
anchor: new google.maps.Point(0, 32)
};