Displaying 3 results from an estimated 3 matches for "mapx".
Did you mean:
map
2005 Feb 24
2
OT - C structure question
I hae tried searching the web for the answer, but, man is there a lot of
pages ... :(
in the language I develop in, if I have a structure I can dynamically
refer to the contents of a field of the structure like so:
MESSAGE SomeStructure:Field(SomeFieldName):Value
where SomeFieldName is either a quoted constant or a variable expressions
In "C", I beleive that you can refer to
2004 Dec 31
2
Supressing empty sections with Sweave
Dear useRs,
I'm writing regular survey reports using Sweave. Each
report has several sections along the lines of:
\section*{Disease X}
<<MapX,fig=TRUE,echo=FALSE>>=
image(vectorx,vectory,matrixz)
@
Notes with or without Sexpr{a}.
\vfill
\pagebreak
\section*{Disease Y}
<<MapY,fig=TRUE,echo=FALSE>>=
...etc.
Often one or more of the diseases is not observed (all
values in matrixz are 0), in which case I would prefer...
2009 Mar 24
0
Patch: clickHandlers in VirtualEarth
...ashx. After consulting Virtual Earth
documentation, I came up with a solution.
Here is my patch (based on rev 212)
> var that = this;
360c361,368
< me.clickHandler(e.view.LatLong.Latitude,
e.view.LatLong.Longitude, me);
---
> //added by FB
> var x = e.mapX;
> var y = e.mapY;
> var pixel = new VEPixel(x, y);
> var LL = that.maps[api].PixelToLatLong(pixel);
> //end of add
> //me.clickHandler(e.view.LatLong.Latitude, e.view.LatLong.Longitude, me);
> me.clickHandler(LL.Latitude...