Hello!!
First I'm sorry with my bad English. I have a problem with the module Gmap block module. I active the option "Use a custom icon" and I select a image with extension ".png", I select Marker and I save. I create the block and I associate the location to block. I show the block into sidebar-left but the new icon it isn't show. In addition it isn't show anymore. I edit html of the page and the url to the image put "/drupal/?q=files/icontr.png" when this it should be showed "files/icontr.png".
I try modify the code of module without exit, I try change :
$form['icon']['icon_path'] = array(
'#type' => 'textfield',
'#title' => t('Path to the icon'),
'#default_value' => $edit['icon_path'],
'#field_prefix' => url(NULL, array('absolute' => TRUE)),
'#description' => t('The path to the image you would like to use as an icon for this location.'),
);
by
$form['icon']['icon_path'] = array(
'#type' => 'textfield',
'#title' => t('Path to the icon'),
'#default_value' => $edit['icon_path'],
'#field_prefix' => " ",
'#description' => t('The path to the image you would like to use as an icon for this location.'),
);
I work in localhost.
But I haven't get exit.
I need help.
Than you very much.