I am trying to add a new layer image. The following works well

new OpenLayers.Layer.Image(
    name,
    "uri/to/image_1.gif",
    extent,
    size,
    options
);

The problem is, I want to create these images dynamically on request.
So, I do something like

new OpenLayers.Layer.Image(
    name,
    "uri/to/app/for/image/1",
    extent,
    size,
    options
);

The idea is that if image_1.gif doesn't exist, it will be created, and
then sent back. I am able to create the requested image correctly, but
I can't wrap my head around how to send the newly created image back
to the client.

Suggestions?

-- 
Puneet Kishor
_______________________________________________
Users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/openlayers-users

Reply via email to