You will for the moment need to create your own. Either using the
classes provided by the local search, or implement it so it directly
accesses the HTTP API.
On 13/06/2009, isterin <ste...@gmail.com> wrote:
> Ah, great, found it this morning, thanks for the reply. Now, I'm
> having some issues actually integrating this control into the version
> 3 of the map.
>
> The map is is displayed just fine...
>
> var map = new google.maps.Map($('#mapDiv').get(0), {
> zoom: 14,
> center: latlon,
> mapTypeId: google.maps.MapTypeId.ROADMAP
> });
>
> but then...
>
> var lsc = new google.elements.LocalSearch();
> map.addControl(lsc);
>
> Yields "Can't find variable GControl". I see the the version 3 apis
> don't have a GControl class, so how would one integrate V3 of maps
> with LocalSearch?
>
> Ilya