I'm using CodeIgniter Google Maps V3 API Library and need to load the map each time I do a new direction, i can't refresh the page so i need to refresh just the map. how can done that ?
what i have to add in this code ?
$config['center'] = 'auto';
$config['zoom'] = 'auto';
$config['directions'] = TRUE;
$config['directionsStart'] = $directionsStart;
$config['directionsWaypointArray'] = $directionsWaypointArray;
$config['directionsEnd'] = $directionsEnd;
$config['directionsDivID'] = 'directionsDiv';
$this->googlemaps->initialize($config);
$data['map'] = $this->googlemaps->create_map();