Hallo,
also ich nutze JSF und Richfaces und habe auf meiner jsf-page eine GoogleMap <rich:gmap Komponente. Nun möchte ich auf diese Komponente aus javaScript heraus zugreifen, die controls modifizieren usw. Hat jeman Ahnung wie das funktioniert?
So in etwa stelle ich mir das vor:
also ich nutze JSF und Richfaces und habe auf meiner jsf-page eine GoogleMap <rich:gmap Komponente. Nun möchte ich auf diese Komponente aus javaScript heraus zugreifen, die controls modifizieren usw. Hat jeman Ahnung wie das funktioniert?
So in etwa stelle ich mir das vor:
Code:
<rich:gmap id="gmCapture" ... gmapVar="mapCapture"
...
oninit="load()">
</rich:gmap>
Code:
<script type="text/javascript">
//<![CDATA[
var map;
var mgr;
function load() {
alert('load');
map = new GMap2(document.getElementById("gmCapture"));
mgr = new MarkerManager(map, {trackMarkers:true});
}
....