Friday, April 26, 2019

jsinterop problem

I want to convert the following js code into Java code using Jsinterop:

var disWorld = new AMap.DistrictLayer.World({
    zIndex:10,
    styles:{
        'nation-stroke':function(props){
            //props:{type:Nation_Border_China/Nation_Border_Foreign}
            if(props.type=='Nation_Border_China'){
                return 'red'
            }else{
                return 'white'
            }
        },
        'coastline-stroke': [0.8, 0.63, 1, 1], 
        'fill':function(props){
            //props:{NAME_CHH,NAME_ENG,SOC}
            return getColorBySOC(props.SOC)
        }
    }
})

I am struggling with "nation-stroke". How do I implement it in Jsinterop? 

Thanks,

David

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment