08-30-2011 02:36 AM
i want to display a multiple markers in map.
here i am using javascript.
so plz help me where we can attach html file in my application
thank u inadvance
Solved! Go to Solution.
08-30-2011 03:04 AM
08-30-2011 03:23 AM
thank u dear ,
i need to load local html file into my browser field.how?
08-30-2011 03:30 AM
HI,
Paste your html file into Res folder.
in browser field call it with this code
browserfield.requestContent("local:///yourhtmlfile");
Let me know if it works.
Regards
Krishnan,
08-30-2011 03:41 AM
i am using this code
BrowserField browserField;
BrowserFieldConfig config = new BrowserFieldConfig();
config.setProperty(BrowserFieldConfig.ALLOW_CS_XH
browserField = new BrowserField(config);
browserField.requestContent("map-projection-simpl
add(browserField);
it goves an error like following screen
08-30-2011 04:52 AM
Hi,
BrowserFieldConfig config = new BrowserFieldConfig();
config.setProperty(BrowserFieldConfig.ALLOW_CS_XH
R, Boolean.TRUE);
browserField = new BrowserField(config);
browserField.requestContent("local:///map-projec
add(browserField);
try the above code and let me know.
The only difference is adding this in request content local:/// .
Regards
Krishnan.
08-30-2011 06:41 AM
its working dear
08-30-2011 06:56 AM
please select it as solved by clicking on the accepted as solution.