I am trying to pass 2 parameters to a javascript function.This code webview.loadUrl("javascript: function_to_call();"); works fine without parameters but i couldn't use it with parameters.

This is javascript junction :

function changeLocation(_lon , _lat){
        var zoom=16;
        var lonLat = new OpenLayers.LonLat( _lon , _lat ) 
        .transform(
        new OpenLayers.Projection("EPSG:4326"
        ),map.getProjectionObject());
        map.setCenter (lonLat, zoom);  
}

And this is how i call it from java :

webView.loadUrl("javascript:changeLocation( -0.1279688 ,51.5077286 );") ;

Edit: I couldn't find the problem and i changed my approach, now i am injecting whole javascript function with desired changes everytime when i need to.It is not best solution but it works.Thank you everyone for your helps.

link|improve this question

@dirhem: Is this loadUrl() (note: capital U) on the WebView widget in Java? Or something else? – CommonsWare Nov 16 '10 at 15:11
@ CommonsWare Sorry i just mistyped here and yes it is WebView widget's loadUrl function. – dirhem Nov 16 '10 at 15:18
Could you post the source code that is giving you trouble? Also, are there any error messages? – Jake Nov 16 '10 at 15:22
@ Jake I have posted the source coude and no i am not having any error message. – dirhem Nov 16 '10 at 15:46
1  
did you try webView.loadUrl('javascript:changeLocation( "-0.1279688" ,"51.5077286" );') ;? – josh.trow Nov 16 '10 at 16:06
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

What you have looks fine. Here is a sample project that demonstrates an almost identical syntax.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.