Tagged Questions

Apache Tiles renders dynamic websites in a Java Servlet container.

learn more… | top users | synonyms

26
votes
4answers
995 views

Most efficient way to save tile data of an isometric game

I'm working on an isometric game for fast browsers that support <canvas>, which is great fun. To save information of each tile, I use a two-dimensional array which contains numbers representing ...
10
votes
4answers
560 views

Random Tile layout

I need to place tiles on a large grid radiating from a central point in a way that looks organic and random. New tiles will need to find an open space on the grid that is touching at least 1 other ...
9
votes
5answers
2k views

Is it possible to tile images in a UIScrollView without having to manually create all the tiles?

In the iPhone sample code "PhotoScroller" from WWDC 2010, they show how to do a pretty good mimmic of the Photos app with scrolling, zooming, and paging of images. They also tile the images to show ...
9
votes
8answers
742 views

How to write a huge JPEG that exceeds the physical RAM using Delphi?

Here is the problem. I have a large set of 512x512 pixels JPEG tiles as regular jpg files. I have written a piece of software that does a bunch of things and does need to stitch all those files into ...
8
votes
4answers
2k views

Why would I use a templating engine? jsp include and jstl vs tiles, freemarker, velocity, sitemesh

I'm about to choose to way to organize my view (with spring-mvc, but that should matter much) There are 6 options as far as I see (though they are not mutually exclusive): tiles sitemesh freemarker ...
8
votes
1answer
2k views

Glueing tile images together using imagemagick's montage command

This seems like it might be a reasonably common question, so I'm going to ask it using as many keywords as I can think of! I have a bunch of (well, nine) tile jpegs, with standard tile filenames. ...
8
votes
10answers
3k views

Max square size for unknown number inside rectangle

If I have a set of tiles (squares) which can be any number and they are to fill a container (rectangle) of an unknown size how do I work out the maximum size of the tiles without having any of them ...
7
votes
1answer
3k views

Accessing Spring beans from a Tiles view (JSP)

In Spring MVC I can access my beans in JSP using JstlView's exposedContextBeanNames (or exposeContextBeansAsAttributes). For example, then, in my JSP I can write (${properties.myProperty). But when ...
6
votes
1answer
174 views

How can I get my collision to be more solid?

I'm working on a game in C# with XNA and I've been learning program in C# thanks to Nick Gravelyn's tutorials, but I've hit a snag. While I'm using Nick's collision system, I'm not using his player ...
6
votes
5answers
737 views

Tile (scalable) stacking algorithm

Here is the problem. I have rectangular canvas that have size of 1. So it have coordinate sistem of (0.0 ... 1.0 - x and 0.0 ... 1.0 - y). I also have some tiles. Tiles are also rectangles. They have ...
6
votes
2answers
2k views

Spring MVC 3.0 and Apache Tiles 2

I'm currently in a Spring MVC 3 based project, and found out about Apache Tiles 2 the other day, I think Tiles 2 is a heck of framework that I could make good use in my project, but before I commit ...
5
votes
2answers
991 views

How to get the original request url from a servlet/jsp after multiple servlet forwards

I am working on a cruise booking app using struts/tiles that uses multiple internal servlet/jsp forwards to reach the right jsp for display. But, once you reach the final jsp that is used to render ...
5
votes
6answers
1k views

Windows Phone 7 Map Control with custom layer in offline mode

Hi WP7 mobile passionate developers! I'm trying to use the default provided Bing Map control from Windows Phone controls. Specifically I'm trying to use a custom TileSource to provide a custom made ...
5
votes
3answers
270 views

How to create a big image file from many tiles in java?

My program produces 10 x 10 tiles images of 3000x3000 pixel, one by one (currently saved to 100 files named image_x_y.jpg) I want to assemble these 100 images into one big image, without loading ...
5
votes
3answers
250 views

Grails + Struts Tiles

Have someone there any experience with integrating Tiles into Grails (instead of SiteMesh)? I found a few articles like this: http://devdevdev.wordpress.com/2009/01/ and as i understand at least one ...
5
votes
3answers
3k views

HTML/JS/CSS Isometric Grid with semi-transparent click-through tiles

I'm trying to create a web app/game that uses a side-on 'isometric' view and transparent tiles. I can display them ok (but not great) using a PHP formula that just sets each div (each tile) as ...
5
votes
4answers
7k views

XNA C# 2D Platformer Game

Hey, I'm trying to make (figure out how to..) a 2d platformer in XNA. I know how to create a tile grid and how to perform collision detection. I perform collision detection on the 9 bounding tiles ...
5
votes
5answers
414 views

Self-describing file format for gigapixel images?

In medical imaging, there appears to be two ways of storing huge gigapixel images: Use lots of JPEG images (either packed into files or individually) and cook up some bizarre index format to ...
5
votes
1answer
1k views

Tiling rectangles seamlessly in WPF

I want to seamlessly tile a bunch of different-colored Rectangles in WPF. That is, I want to put a bunch of rectangles edge-to-edge, and not have gaps between them. If everything is aligned to ...
5
votes
5answers
8k views

How to get real request URL in struts with tiles?

When you use tiles in struts and do request.getRequestURL() You get url to /WEB-INF/jsp/layout/newLayout.jsp instead of real URL that was entered/clicked by user, something like /context/action.do. ...
4
votes
1answer
273 views

I cannot display dynamic page title using spring 3 and apache tiles 2.2

I have a problem using spring 3 and tiles 2.2.2 . I can't display a dynamic page title. These are my config/jsp files: layout.jsp <%@ page pageEncoding="UTF-8" contentType="text/html; ...
4
votes
2answers
374 views

Finding adjacent neighbors on a hexagonal grid

EDIT: Wrapped the example map in a code block so the formatting is correct. Ok, I'm trying to write an extremely simple A* algorithm over a hexagonal grid. I understand, and can do the A* portion. In ...
4
votes
1answer
325 views

WP7 Update Tile locally

is there a possibility in WP7 to update a tile from the depending application. For example a weather service that updates the tile every hour (ShellTileSchedule). Thanks in advance.
4
votes
3answers
790 views

Can I serve JSPs from inside a JAR in lib, or is there a workaround?

I have a web application deployed as a WAR file in Tomcat 7. The application is build as a multi-module project: core - packaged as JAR, contains most of the backend code core-api - packaged as JAR, ...
4
votes
5answers
556 views

How to calculate the height and width of an isometric rectangle/square

I'm writing an isometric tile game. Each tile is twice as wide as it is tall (w:h = 2:1). All tiles in a map are the same size and their width and heights are known (TileWidth and TileHeight). ...
4
votes
3answers
189 views

JS: given a point in a 2d array and a distance, which coordinates are travelable?

Given a 2D array of any size like so: var board = [ [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0], ...
4
votes
4answers
483 views

Pure HTML + JavaScript client side templating

I want to have achieve something similar to Java Tiles framework using only client side technologies (no server side includes). I would like to have one page, eg layout.html which will contain layout ...
4
votes
1answer
446 views

how to configure apache tiles to read jsps from inside jar files?

The architecture of my web application is highly modular. I am using apache tiles as the templating framework. The app modules are bundled as different jar files and put inside WEB-INF/lib folder. So ...
4
votes
1answer
515 views

request.getQueryString() should not be null?

I'm debugging an old Struts 1.2 w/ Tiles application running on Oracle App Server 10.1.3. There are some scenarios in which request.getQueryString() seems to improperly return null and it seems to ...
4
votes
2answers
10k views

Using Spring, mapping to root in web.xml, static resources aren't found

What I'm trying to do is map requests to the servlet root (correct terminology?). I'm at the point where URLs are mapped to correct view but all the static content - css, javascript, images - that is ...
4
votes
2answers
1k views

Servlet page decoration: Do people use Tiles, Sitemesh, or something else?

I've used Tiles and Sitemesh for a number of years and while I personally prefer the Sitemesh style page decoration, I generally don't see a lot of mention of Sitemesh or Tiles on the Internet. Do ...
4
votes
3answers
299 views

Could this tile blitter get any faster?

When I make a tile-based map editor in C#, I tend to iterate over the X,Y axes and call Graphics.DrawImage() to blit a single tile in place, from a tileset Bitmap onto a map Bitmap. This process takes ...
4
votes
3answers
6k views

Integrating Spring Webflow 2 and Apache Tiles

I've recently started upgrading some applications to use Spring Webflow 2, and I want to make use of the new Ajax functionality that comes with Webflow 2. Can somebody please direct me to a tutorial ...
4
votes
3answers
1k views

tiles in struts project - better than freemarker?

I want to use a template engine in a struts application and would like to know if using TILES can be recommended instead of FREEMARKER or VELOCITY.
3
votes
1answer
220 views

Osmdroid: How I can create and load a map from my own bitmaps(tiles)?

I am starting to use Osmdroid and I would like to use this technology for showing a map about an F1 circuit. I have a big picture and I can cut it up to divide it into smaller tiles. Can I modify the ...
3
votes
2answers
785 views

WP7 - live tiles not picking up image form isolated storage

Within my WP7 app, I am generating an image for a live tile and saving in Isolated storage. It is then available for my periodic task to update the live tile with and everything is working fine in ...
3
votes
1answer
253 views

MapView with overlaying image and zoom

i know this topic has been discussed several times already, but i haven't found any satisfying answers yet. So i use a MapView with an overlaying PNG-Image with a high resolution to show a seamap ...
3
votes
3answers
90 views

Remove margin between rows of overflowing inline elements

I'm creating a tile-based game and am using block rendering to update a large list of tiles. I'm attempting to do this in the most simple manner, so I've been trying to work with HTML's default ...
3
votes
1answer
273 views

Tile-Overlay Animation - Bing / Google

I've created a tile set, and this tile set expires every 10 mins. However I want to be able to show a cycle of the past 50 mins (of stored tiles i have). I know with Google Maps 2.0 you can do this ...
3
votes
1answer
2k views

Sitemesh or Tiles

Working on the design of a web-application and since it will be a large application so can not reply on jsp include feature so have to use some other solution and for that we came up with Tiles and ...
3
votes
1answer
1k views

Calculating tiles to display in a MapRect when “over-zoomed” beyond the overlay tile set

I am working on an app that uses MKOverlay views to layer my own custom maps on top of the Google base map. I have been using Apple's excellent TileMap sample code (from WWDC 2010) as a guide. My ...
3
votes
1answer
2k views

Tiles and redirect in Spring MVC

I am using Tiles 2 in my Spring 3 MVC application i defines a form : <definition name="addcompany.htm" extends="baseLayout"> <put-attribute name="title" value="Add Company"/> ...
3
votes
2answers
944 views

Isometric Screen to Map

I'm trying to figure out how I can get the correct "active" tile under the mouse when I have "ramp" and +1 height tiles (see picture below). When my world is flat, everything works no problem. ...
3
votes
3answers
1k views

Drawing 2D Sprite (Bitmap) TIles Efficiently

I'm writing a 2d tile-based engine. Currently, my drawing routine uses the C# Drawing library to redraw every visible tile every time the screen refreshes. I got scrolling and zooming to work, and ...
3
votes
1answer
1k views

Map tiles for Openstreetmaps (OSM) and Google Maps (satellite view)

Are tiles from Openstreetmap (OSM) compatible with tiles of Google Maps (satellite view)? By compatible I mean - is it possible to use the code/logic that is written to read Openstreetmaps tiles to ...
3
votes
1answer
283 views

MapView tile coordinates

Is it possible to determine the coordinates of the tiles that are visible in a MapView, relative to the first tile in the upper left corner of the entire map (including the invisible part)? I can't ...
3
votes
1answer
566 views

Tiled images in swing

I have task to prepare two windows with swing. One contains grid of squares, with random numbers in them. In second I need to load pieces of tiled image and then show them in the correct order, ...
3
votes
1answer
405 views

JXMapViewer change orientation to Heading Up

I am trying to use JXMapViewer (from swingx-ws) with Open Street Maps. I was wondering if it would be possible to display the map tiles in the JXMapViewer based on heading up, rather than on North up. ...
3
votes
3answers
1k views

Struts Tiles 1 - nested tiles problem

I am using Struts tiles 1 succesfully, however I have come across a problem when trying to nest tiles. I currently have a layout like so: I wish to have another template like this, for use in ...
3
votes
1answer
1k views

Apache Tiles 2.1 - How to prevent inherited list attributes from getting duplicated?

I'm working on a project using Apache Tiles 2.1. I am running into an issue where extending templates with list attributes is creating duplicates of those list items... one set of duplicates for ...

1 2 3 4 5 8