I found the problem! All the offset settings for the user defined Icons are wrong. They are all set to the lower left image corner of the image. Therefore, if you zoom out, the image shifts to the right site from its origin.
This is a bug and should be resolved by phoca!
I dont want to fix each Icon, but as example lets take the Green Arrow Image.
1. Open the file:
yoursitename/administrator/components/com_phocamaps/helpers/phocamapsicon.php
2. Scroll to the igreen Image (which has a wrong remark "home icon")
// Icon Home
$i[4]['name'] = 'igreen';
$i[4]['size'] = '26,26';
$i[4]['point1'] = '0,0';
$i[4]['point2'] = '0,26';
$i[4]['sizes'] = '39,26';
$i[4]['point1s']= '0,0';
$i[4]['point2s']= '0,30';
3. Change the values for the offset of icon image and shadow image which is defined by point2 and point2s:
// Icon Home
$i[4]['name'] = 'igreen';
$i[4]['size'] = '26,26';
$i[4]['point1'] = '0,0';
$i[4]['point2'] = '13,26';
$i[4]['sizes'] = '39,26';
$i[4]['point1s']= '0,0';
$i[4]['point2s']= '0,26';
4. Configure your marker to show the green Icon, and you will see, thats it!
Instead of the lower left corner (Left offset = 0, top offset = 26) we defined the middle of the image bottom (Left offset =13, top offset = 26)
The goolge maps code example for custom markers which I found on google's official coding homepage, is using a flag icon, where the left bottom corner is used to show the place, because they have a a image where the left bottom corner is like an arrow, could be that this code was just copied from there:
You can copy the following code into notepad and save it as testmap.html. Double click the file and you will see what I mean.
Code: Select all
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps JavaScript API v3 Example: Complex Icons</title>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize() {
var myOptions = {
zoom: 10,
center: new google.maps.LatLng(-33.9, 151.2),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
setMarkers(map, beaches);
}
/**
* Data for the markers consisting of a name, a LatLng and a zIndex for
* the order in which these markers should display on top of each
* other.
*/
var beaches = [
['Bondi Beach', -33.890542, 151.274856, 4],
['Coogee Beach', -33.923036, 151.259052, 5],
['Cronulla Beach', -34.028249, 151.157507, 3],
['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
['Maroubra Beach', -33.950198, 151.259302, 1],
['Recife',-8.028488817274184, -35.00410079956055,6]
];
function setMarkers(map, locations) {
// Add markers to the map
// Marker sizes are expressed as a Size of X,Y
// where the origin of the image (0,0) is located
// in the top left of the image.
// Origins, anchor positions and coordinates of the marker
// increase in the X direction to the right and in
// the Y direction down.
var image = new google.maps.MarkerImage('http://code.google.com/intl/de-CH/apis/maps/documentation/javascript/examples/images/beachflag.png',
// This marker is 20 pixels wide by 32 pixels tall.
new google.maps.Size(20, 32),
// The origin for this image is 0,0.
new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,32.
new google.maps.Point(0, 32));
var shadow = new google.maps.MarkerImage('http://code.google.com/intl/de-CH/apis/maps/documentation/javascript/examples/images/beachflag_shadow.png',
// The shadow image is larger in the horizontal dimension
// while the position and offset are the same as for the main image.
new google.maps.Size(37, 32),
new google.maps.Point(0,0),
new google.maps.Point(0, 32));
// Shapes define the clickable region of the icon.
// The type defines an HTML <area> element 'poly' which
// traces out a polygon as a series of X,Y points. The final
// coordinate closes the poly by connecting to the first
// coordinate.
var shape = {
coord: [1, 1, 1, 20, 18, 20, 18 , 1],
type: 'poly'
};
for (var i = 0; i < locations.length; i++) {
var beach = locations[i];
var myLatLng = new google.maps.LatLng(beach[1], beach[2]);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
shadow: shadow,
icon: image,
shape: shape,
title: beach[0],
zIndex: beach[3]
});
}
}
</script>
</head>
<body onload="initialize()">
<div id="map_canvas"></div>
</body>
</html>
Michael