GMap3 Controls don't show

Hello,
I have the following code. The controls in the maps are not showing but the map shows along with marker.
with IWCGJQGMap3EX1.JQGMap3EXOptions do
begin
Map.Options.Zoom:= 14;
Map.Options.Center.Latitude:= ALat;
Map.Options.Center.Longitude:= ALon;
Map.Options.Draggable:= TRUE;
Map.Options.ClickableIcons:=TRUE;
Map.Options.FullscreenControl:=TRUE;
Map.Options.FullscreenControlOptions.Position:='TOP_RIGHT';
Map.Options.MapTypeControl:=TRUE;
Map.Options.MapTypeId:='ROADMAP';
Map.Options.MapTypeControlOptions.Position:='TOP_LEFT';
Map.Options.ScrollWheel:=TRUE;
Map.Options.StreetViewControl:=TRUE;
Map.Options.ZoomControl:=TRUE;
end;
with IWCGJQGMap3EX1.JQGMap3EXOptions do
begin
Markers.Items.Clear;
with Markers.Items.Add do
begin
Position.Latitude:= ALat;
Position.Longitude:= ALon;
MarkerLabel.Text:=ATitle;
end;
end;
end;
procedure TGoogleMapsDialog.IWFrameRegionJQDialogOptionsOpen(Sender: TObject; AParams:TStringList);
begin
inherited;
IWCGJQGMap3EX1.AjaxReRender(TRUE,FALSE);
end;
What am I doing wrong?
Thanks
I have the following code. The controls in the maps are not showing but the map shows along with marker.
with IWCGJQGMap3EX1.JQGMap3EXOptions do
begin
Map.Options.Zoom:= 14;
Map.Options.Center.Latitude:= ALat;
Map.Options.Center.Longitude:= ALon;
Map.Options.Draggable:= TRUE;
Map.Options.ClickableIcons:=TRUE;
Map.Options.FullscreenControl:=TRUE;
Map.Options.FullscreenControlOptions.Position:='TOP_RIGHT';
Map.Options.MapTypeControl:=TRUE;
Map.Options.MapTypeId:='ROADMAP';
Map.Options.MapTypeControlOptions.Position:='TOP_LEFT';
Map.Options.ScrollWheel:=TRUE;
Map.Options.StreetViewControl:=TRUE;
Map.Options.ZoomControl:=TRUE;
end;
with IWCGJQGMap3EX1.JQGMap3EXOptions do
begin
Markers.Items.Clear;
with Markers.Items.Add do
begin
Position.Latitude:= ALat;
Position.Longitude:= ALon;
MarkerLabel.Text:=ATitle;
end;
end;
end;
procedure TGoogleMapsDialog.IWFrameRegionJQDialogOptionsOpen(Sender: TObject; AParams:TStringList);
begin
inherited;
IWCGJQGMap3EX1.AjaxReRender(TRUE,FALSE);
end;
What am I doing wrong?
Thanks